fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
validate cover format on document create
[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
e41f19d
..
ae0fd2d
100644
(file)
--- a/
redakcja/static/js/wiki/view_search.js
+++ b/
redakcja/static/js/wiki/view_search.js
@@
-90,9
+90,12
@@
else {}
self.searchCursor.select();
self.searchCursor.replace(query);
+ var found = self.search();
if(self.options['replace-all']) {
- while(
self.search())
+ while(
found) {
self.replace();
+ found = self.search();
+ }
}
};