Skip to content

Commit

Permalink
Building with firefox fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
caguthrie committed Jun 22, 2015
1 parent dc881fb commit b4d17f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions dist/react-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,8 @@ function buildHeaders(table) {
(columnDef == table.state.columnDefSorted && table.state.sortAsc ?
table.handleSort.bind(null, columnDef, false) : table.replaceData.bind(null, table.props.data, true))},
React.DOM.div({style: {textAlign: "center"}, className: "rt-header-element", key: columnDef.colTag},
React.DOM.a({className: textClasses
//onClick={table.props.filtering && table.props.filtering.disable ? null : toggleFilterBox.bind(null, table, columnDef.colTag)}
},
React.DOM.a({href: "#", className: textClasses,
onClick: table.props.filtering && table.props.filtering.disable ? null : toggleFilterBox.bind(null, table, columnDef.colTag)},
table.state.firstColumnLabel.join("/")
),
React.DOM.input({style: ss, className: ("rt-" + columnDef.colTag + "-filter-input rt-filter-input") + (table.state.filterInPlace[columnDef.colTag] ? "" : " rt-hide"),
Expand Down Expand Up @@ -268,9 +267,8 @@ function buildHeaders(table) {
(columnDef == table.state.columnDefSorted && table.state.sortAsc ?
table.handleSort.bind(null, columnDef, false) : table.replaceData.bind(null, table.props.data, true))},
React.DOM.div({style: style, className: "rt-header-element rt-info-header", key: columnDef.colTag},
React.DOM.a({className: textClasses
//onClick={table.props.filtering && table.props.filtering.disable ? null : toggleFilterBox.bind(null, table, columnDef.colTag)}
},
React.DOM.a({href: "#", className: textClasses,
onClick: table.props.filtering && table.props.filtering.disable ? null : toggleFilterBox.bind(null, table, columnDef.colTag)},
columnDef.text
),
React.DOM.input({style: ss, className: ("rt-" + columnDef.colTag + "-filter-input rt-filter-input") + (table.state.filterInPlace[columnDef.colTag] ? "" : " rt-hide"),
Expand Down
Loading

0 comments on commit b4d17f9

Please sign in to comment.