fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Adding "replace all" functionality to replace find & replace tool
[redakcja.git]
/
redakcja
/
static
/
js
/
wiki
/
view_search.js
diff --git
a/redakcja/static/js/wiki/view_search.js
b/redakcja/static/js/wiki/view_search.js
index
15f8e2e
..
e41f19d
100644
(file)
--- a/
redakcja/static/js/wiki/view_search.js
+++ b/
redakcja/static/js/wiki/view_search.js
@@
-7,6
+7,7
@@
var old_callback = options.callback || function() { };
this.noupdate_hash_onenter = true;
var old_callback = options.callback || function() { };
this.noupdate_hash_onenter = true;
+ this.vsplitbar = 'ZNAJDŹ I ZAMIEŃ';
options.callback = function(){
var self = this;
options.callback = function(){
var self = this;
@@
-89,7
+90,10
@@
else {}
self.searchCursor.select();
self.searchCursor.replace(query);
else {}
self.searchCursor.select();
self.searchCursor.replace(query);
- self.search();
+ if(self.options['replace-all']) {
+ while(self.search())
+ self.replace();
+ }
};
SearchPerspective.prototype.onEnter = function(success, failure){
};
SearchPerspective.prototype.onEnter = function(success, failure){