File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,15 +106,15 @@ const Finder = Module("finder", {
106
106
* @param {string } str The string to find.
107
107
* @see Bug537013 https://bugzilla.mozilla.org/show_bug.cgi?id=537013
108
108
*/
109
- find : Services . vc . compare ( Services . appinfo . version , "24 .0" ) > 0 ?
109
+ find : Services . vc . compare ( Services . appinfo . version , "25 .0" ) >= 0 ?
110
110
function ( str ) {
111
111
let fastFind = config . browser . getFindBar ( ) ;
112
112
this . _processUserPattern ( str ) ;
113
113
fastFind . _typeAheadCaseSensitive = this . _caseSensitive ;
114
114
fastFind . _typeAheadLinksOnly = this . _linksOnly ;
115
115
let result = fastFind . _find ( str ) ;
116
116
} :
117
- // FIXME: remove when minVersion > 24
117
+ // FIXME: remove when minVersion >= 25
118
118
function ( str ) {
119
119
let fastFind = config . browser . fastFind ;
120
120
You can’t perform that action at this time.
0 commit comments