@@ -132,7 +132,7 @@ const Finder = Module("finder", {
132
132
* @default false
133
133
* @see Bug537013 https://bugzilla.mozilla.org/show_bug.cgi?id=537013
134
134
*/
135
- findAgain : Services . vc . compare ( Services . appinfo . version , "24 .0" ) > 0 ?
135
+ findAgain : Services . vc . compare ( Services . appinfo . version , "25 .0" ) >= 0 ?
136
136
function ( reverse ) {
137
137
let fastFind = config . browser . getFindBar ( ) ;
138
138
if ( fastFind . _findField . value != this . _lastSearchString )
@@ -143,7 +143,7 @@ const Finder = Module("finder", {
143
143
let result = fastFind . _findAgain ( backwards ) ;
144
144
this . _displayFindResult ( result , backwards ) ;
145
145
} :
146
- // FIXME: remove when minVersion > 24
146
+ // FIXME: remove when minVersion >= 25
147
147
function ( reverse ) {
148
148
// This hack is needed to make n/N work with the correct string, if
149
149
// we typed /foo<esc> after the original search. Since searchString is
@@ -216,9 +216,9 @@ const Finder = Module("finder", {
216
216
// focus links after searching, so the user can just hit <Enter> another time to follow the link
217
217
// This has to be done async, because the mode reset after onSubmit would
218
218
// clear the focus
219
- let elem = Services . vc . compare ( Services . appinfo . version , "24 .0" ) > 0 ?
219
+ let elem = Services . vc . compare ( Services . appinfo . version , "25 .0" ) >= 0 ?
220
220
config . browser . getFindBar ( ) . _foundLinkRef . get ( ) :
221
- config . browser . fastFind . foundLink ; // FIXME: remove when minVersion > 24
221
+ config . browser . fastFind . foundLink ; // FIXME: remove when minVersion >= 25
222
222
this . setTimeout ( function ( ) {
223
223
if ( elem )
224
224
elem . focus ( ) ;
0 commit comments