Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
v3.1.0 Acacia
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Dec 10, 2018
1 parent e15f7c7 commit 8e285ac
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 26 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ Run `npm install` to install dependencies and then `grunt` to build the project

## Release Names

* [3.1.0: Acacia](https://github.com/filamentgroup/tablesaw/releases/tag/v3.1.0)
* [3.0.6: Wonderboom](https://github.com/filamentgroup/tablesaw/releases/tag/v3.0.6)
* [3.0.3: Cucumbertree](https://github.com/filamentgroup/tablesaw/releases/tag/v3.0.3)
* [3.0.2: Bald Cypress](https://github.com/filamentgroup/tablesaw/releases/tag/v3.0.2)
* [3.0.1: Cypress](https://github.com/filamentgroup/tablesaw/releases/tag/v3.0.1)
Expand Down
2 changes: 1 addition & 1 deletion dist/stackonly/tablesaw.stackonly.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */

Expand Down
9 changes: 5 additions & 4 deletions dist/stackonly/tablesaw.stackonly.jquery.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */
(function (root, factory) {
Expand Down Expand Up @@ -303,20 +303,21 @@ if (Tablesaw.mustard) {

Table.prototype._findPrimaryHeadersForCell = function(cell) {
var $headerRow = this._getPrimaryHeaderRow();
var $headers = this._getPrimaryHeaderCells($headerRow);
var headerRowIndex = this._getRowIndex($headerRow);
var results = [];

for (var rowNumber = 0; rowNumber < this.headerMapping.length; rowNumber++) {
if (rowNumber === headerRowIndex) {
continue;
}

for (var colNumber = 0; colNumber < this.headerMapping[rowNumber].length; colNumber++) {
if (this.headerMapping[rowNumber][colNumber] === cell) {
results.push($headers[colNumber]);
results.push(this.headerMapping[headerRowIndex][colNumber]);
}
}
}

return results;
};

Expand Down Expand Up @@ -635,7 +636,7 @@ if (Tablesaw.mustard) {
this.$table.removeClass(classes.stackTable);
this.$table.find("." + classes.cellLabels).remove();
this.$table.find("." + classes.cellContentLabels).each(function() {
$(this).replaceWith(this.childNodes);
$(this).replaceWith($(this.childNodes));
});
};

Expand Down
9 changes: 5 additions & 4 deletions dist/stackonly/tablesaw.stackonly.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */
/*! Shoestring - v2.0.0 - 2017-02-14
Expand Down Expand Up @@ -2004,20 +2004,21 @@ if (Tablesaw.mustard) {

Table.prototype._findPrimaryHeadersForCell = function(cell) {
var $headerRow = this._getPrimaryHeaderRow();
var $headers = this._getPrimaryHeaderCells($headerRow);
var headerRowIndex = this._getRowIndex($headerRow);
var results = [];

for (var rowNumber = 0; rowNumber < this.headerMapping.length; rowNumber++) {
if (rowNumber === headerRowIndex) {
continue;
}

for (var colNumber = 0; colNumber < this.headerMapping[rowNumber].length; colNumber++) {
if (this.headerMapping[rowNumber][colNumber] === cell) {
results.push($headers[colNumber]);
results.push(this.headerMapping[headerRowIndex][colNumber]);
}
}
}

return results;
};

Expand Down Expand Up @@ -2336,7 +2337,7 @@ if (Tablesaw.mustard) {
this.$table.removeClass(classes.stackTable);
this.$table.find("." + classes.cellLabels).remove();
this.$table.find("." + classes.cellContentLabels).each(function() {
$(this).replaceWith(this.childNodes);
$(this).replaceWith($(this.childNodes));
});
};

Expand Down
4 changes: 2 additions & 2 deletions dist/stackonly/tablesaw.stackonly.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */

Expand Down
2 changes: 1 addition & 1 deletion dist/tablesaw-init.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */
(function(win) {
Expand Down
6 changes: 3 additions & 3 deletions dist/tablesaw.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */

Expand Down Expand Up @@ -663,14 +663,14 @@ a.tablesaw-btn {
}
}

.tablesaw-columntoggle-popup .btn-group > label {
.tablesaw-columntoggle-popup .tablesaw-btn-group > label {
display: block;
padding: .2em 0;
white-space: nowrap;
cursor: default;
}

.tablesaw-columntoggle-popup .btn-group > label input {
.tablesaw-columntoggle-popup .tablesaw-btn-group > label input {
margin-right: .8em;
}

Expand Down
11 changes: 6 additions & 5 deletions dist/tablesaw.jquery.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */
(function (root, factory) {
Expand Down Expand Up @@ -303,20 +303,21 @@ if (Tablesaw.mustard) {

Table.prototype._findPrimaryHeadersForCell = function(cell) {
var $headerRow = this._getPrimaryHeaderRow();
var $headers = this._getPrimaryHeaderCells($headerRow);
var headerRowIndex = this._getRowIndex($headerRow);
var results = [];

for (var rowNumber = 0; rowNumber < this.headerMapping.length; rowNumber++) {
if (rowNumber === headerRowIndex) {
continue;
}

for (var colNumber = 0; colNumber < this.headerMapping[rowNumber].length; colNumber++) {
if (this.headerMapping[rowNumber][colNumber] === cell) {
results.push($headers[colNumber]);
results.push(this.headerMapping[headerRowIndex][colNumber]);
}
}
}

return results;
};

Expand Down Expand Up @@ -635,7 +636,7 @@ if (Tablesaw.mustard) {
this.$table.removeClass(classes.stackTable);
this.$table.find("." + classes.cellLabels).remove();
this.$table.find("." + classes.cellContentLabels).each(function() {
$(this).replaceWith(this.childNodes);
$(this).replaceWith($(this.childNodes));
});
};

Expand Down Expand Up @@ -839,7 +840,7 @@ if (Tablesaw.mustard) {
"</span></a>"
);
$popup = $("<div class='" + this.classes.popup + "' id='" + id + "'></div>");
$menu = $("<div class='btn-group'></div>");
$menu = $("<div class='tablesaw-btn-group'></div>");

this.$popup = $popup;

Expand Down
11 changes: 6 additions & 5 deletions dist/tablesaw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Tablesaw - v3.0.9 - 2018-12-07
/*! Tablesaw - v3.1.0 - 2018-12-10
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2018 Filament Group; Licensed MIT */
/*! Shoestring - v2.0.0 - 2017-02-14
Expand Down Expand Up @@ -2004,20 +2004,21 @@ if (Tablesaw.mustard) {

Table.prototype._findPrimaryHeadersForCell = function(cell) {
var $headerRow = this._getPrimaryHeaderRow();
var $headers = this._getPrimaryHeaderCells($headerRow);
var headerRowIndex = this._getRowIndex($headerRow);
var results = [];

for (var rowNumber = 0; rowNumber < this.headerMapping.length; rowNumber++) {
if (rowNumber === headerRowIndex) {
continue;
}

for (var colNumber = 0; colNumber < this.headerMapping[rowNumber].length; colNumber++) {
if (this.headerMapping[rowNumber][colNumber] === cell) {
results.push($headers[colNumber]);
results.push(this.headerMapping[headerRowIndex][colNumber]);
}
}
}

return results;
};

Expand Down Expand Up @@ -2336,7 +2337,7 @@ if (Tablesaw.mustard) {
this.$table.removeClass(classes.stackTable);
this.$table.find("." + classes.cellLabels).remove();
this.$table.find("." + classes.cellContentLabels).each(function() {
$(this).replaceWith(this.childNodes);
$(this).replaceWith($(this.childNodes));
});
};

Expand Down Expand Up @@ -2540,7 +2541,7 @@ if (Tablesaw.mustard) {
"</span></a>"
);
$popup = $("<div class='" + this.classes.popup + "' id='" + id + "'></div>");
$menu = $("<div class='btn-group'></div>");
$menu = $("<div class='tablesaw-btn-group'></div>");

this.$popup = $popup;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tablesaw",
"title": "Tablesaw",
"description": "A set of plugins for responsive tables.",
"version": "3.0.9",
"version": "3.1.0",
"homepage": "https://github.com/filamentgroup/tablesaw",
"author": {
"name": "Zach Leatherman",
Expand Down

0 comments on commit 8e285ac

Please sign in to comment.