var old_callback = options.callback || function() { };
this.noupdate_hash_onenter = true;
+ this.vsplitbar = 'ZNAJDŹ I ZAMIEŃ';
options.callback = function(){
var self = this;
self.searchCursor = self.editor.getSearchCursor(
self.$searchInput.val(),
self.options['search-from-cursor'],
- self.options['search-regexp'],
- self.options['search-case-sensitive']
+ !self.options['search-case-sensitive']
);
}
if (self.searchCursor.findNext()) {
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){
self.$searchCursor = null;
$('.vsplitbar').not('.active').trigger('click');
+ $(".vsplitbar-title").html("↓ ZNAJDŹ I ZAMIEŃ ↓");
+
if ($.wiki.activePerspective() != 'CodeMirrorPerspective')
$.wiki.switchToTab('#CodeMirrorPerspective');
};
$.wiki.SearchPerspective = SearchPerspective;
-})(jQuery);
\ No newline at end of file
+})(jQuery);