Skip to content

Commit

Permalink
Fixes for compatibility with IPython 2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Shawver committed Oct 6, 2014
1 parent 43b2774 commit 094b5bc
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 37 deletions.
4 changes: 2 additions & 2 deletions qgrid/qgridjs/qgrid.css
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
font-size: 13px;
}

.q-grid-container .grid-filter i.fa-times {
.q-grid-container .grid-filter i.close-button {
position: absolute;
right: 11px;
top: 7px;
Expand All @@ -202,7 +202,7 @@
cursor: pointer;
}

.q-grid-container .grid-filter i.fa-times:hover {
.q-grid-container .grid-filter i.close-button:hover {
color: #777777;
}

Expand Down
2 changes: 1 addition & 1 deletion qgrid/qgridjs/qgrid.datefilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ define([
"<div class='date-range-filter grid-filter dropdown-menu {{type}}-filter'>" +
"<h3 class='popover-title'>" +
"<div class='dropdown-title'>Filter by {{name}}</div>" +
"<i class='fa fa-times'/>" +
"<i class='fa fa-times icon-remove close-button'/>" +
"</h3>" +
"<div class='dropdown-body'>" +
"<input class='datepicker ignore start-date'/>" +
Expand Down
4 changes: 2 additions & 2 deletions qgrid/qgridjs/qgrid.filterbase.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ define([

this.column_header_elem = column_header_elem;
this.slick_grid = slick_grid;
this.filter_btn = $("<div class='fa fa-filter filter-button'>");
this.filter_btn = $("<div class='fa fa-filter icon-filter filter-button'>");
this.filter_btn.appendTo(this.column_header_elem);
this.filter_btn.click($.proxy(this.handle_filter_button_clicked, this));
this.update_filter_button_disabled();
Expand Down Expand Up @@ -126,7 +126,7 @@ define([
this.filter_elem.find("a.reset-link").click($.proxy(this.handle_reset_filter_clicked, this));

var self = this;
this.filter_elem.find("i.fa-times").click(function(e){
this.filter_elem.find("i.close-button").click(function(e){
self.hide_filter();
return false;
});
Expand Down
2 changes: 1 addition & 1 deletion qgrid/qgridjs/qgrid.sliderfilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ define([
"<div class='numerical-filter grid-filter dropdown-menu {{type}}-filter'>" +
"<h3 class='popover-title'>" +
"<div class='dropdown-title'>Filter by {{name}}</div>" +
"<i class='fa fa-times'/>" +
"<i class='fa fa-times icon-remove close-button'/>" +
"</h3>" +
"<div class='dropdown-body'>" +
"<div class='slider-range'/>" +
Expand Down
62 changes: 31 additions & 31 deletions qgrid_demo.ipynb

Large diffs are not rendered by default.

0 comments on commit 094b5bc

Please sign in to comment.