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 64a35c4..21127dc 100644 (file)
@@ -90,7 +90,9 @@
         else {}
         self.searchCursor.select();
         self.searchCursor.replace(query);
-        self.search();
+        if(self.options['replace-all'] && self.search()) {
+            self.replace();
+        }
     };
 
     SearchPerspective.prototype.onEnter = function(success, failure){