Fix: replace-all now handles the case where new string contains the old one as a...
[redakcja.git] / redakcja / static / js / wiki / view_search.js
index ae0fd2d..21127dc 100644 (file)
         else {}
         self.searchCursor.select();
         self.searchCursor.replace(query);
-        var found = self.search();
-        if(self.options['replace-all']) {
-            while(found) {
-                self.replace();
-                found = self.search();
-            }
+        if(self.options['replace-all'] && self.search()) {
+            self.replace();
         }
     };