fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
pep8, style, dead code cleanup etc.
[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
..
ae0fd2d
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,13
@@
else {}
self.searchCursor.select();
self.searchCursor.replace(query);
else {}
self.searchCursor.select();
self.searchCursor.replace(query);
- self.search();
+ var found = self.search();
+ if(self.options['replace-all']) {
+ while(found) {
+ self.replace();
+ found = self.search();
+ }
+ }
};
SearchPerspective.prototype.onEnter = function(success, failure){
};
SearchPerspective.prototype.onEnter = function(success, failure){