revert accidently commited stuff

This commit is contained in:
Ralf Becker 2016-02-16 10:16:49 +00:00
parent 6b33adcb7c
commit f6e5a85c46
3 changed files with 32 additions and 34 deletions

View File

@ -2268,7 +2268,6 @@ var et2_nextmatch_header_bar = et2_DOMWidget.extend(et2_INextmatchHeader,
var settings = this.nextmatch.options.settings;
this.div.prependTo(nm_div);
this.div.addClass('et2_toolbar'); // get toolbar styling
// Left & Right (& row) headers
this.headers = [
@ -2280,7 +2279,6 @@ var et2_nextmatch_header_bar = et2_DOMWidget.extend(et2_INextmatchHeader,
// The rest of the header
this.header_div = this.row_div = jQuery(document.createElement("div"))
.addClass("nextmatch_header_row")
.addClass('et2_toolbar_actionlist') // get toolbar styling
.appendTo(this.div);
// Search

View File

@ -438,10 +438,10 @@ var et2_searchbox = et2_textbox.extend(
{
var self = this;
// search button indicator
this.button = et2_createWidget('button',{image: 'search', background_image: true/*class:"et2_button_with_image"*/},this);
this.button = et2_createWidget('button',{class:"et2_button_with_image"},this);
this.button.onclick= function(){
self._show_hide(true);
self.search.input.focus();
self.search.input.focus()
};
this.div.prepend(this.button.getDOMNode());