Skip to content

Commit

Permalink
chore: build for v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwoo committed Feb 24, 2017
1 parent cfc569d commit bf9540f
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 30 deletions.
22 changes: 14 additions & 8 deletions dist/grid.comb.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* bundle created at "Mon Feb 13 2017 10:19:09 GMT+0900 (KST)"
* version: 1.8.0
* bundle created at "Fri Feb 24 2017 16:41:07 GMT+0900 (KST)"
* version: 1.8.1
*/
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
Expand Down Expand Up @@ -11323,9 +11323,9 @@
* @private
*/
_getStartRowSpanMinCount: function(startIndex) {
var firstRow = this.dataModel.at(startIndex),
result = 0,
counts;
var firstRow = this.dataModel.at(startIndex);
var result = 0;
var counts;

if (firstRow) {
counts = _.pluck(firstRow.getRowSpanData(), 'count');
Expand All @@ -11342,15 +11342,21 @@
* @private
*/
_getEndRowSpanMaxCount: function(endIndex) {
var lastRow = this.dataModel.at(endIndex),
result = 0,
counts;
var lastRow = this.dataModel.at(endIndex);
var result = 0;
var counts;

if (lastRow) {
counts = _.pluck(lastRow.getRowSpanData(), 'count');
counts.push(0); // count가 양수인 경우(mainRow인 경우)에만 최대값을 구함. 없으면 0
result = _.max(counts);
}

// subtract 1, as the count includes main-cell itself
if (result > 0) {
result -= 1;
}

return result;
},

Expand Down
12 changes: 6 additions & 6 deletions dist/grid.comb.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/grid.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* bundle created at "Mon Feb 13 2017 10:19:09 GMT+0900 (KST)"
* version: 1.8.0
* bundle created at "Fri Feb 24 2017 16:41:07 GMT+0900 (KST)"
* version: 1.8.1
*/
.tui-grid-container {
width: 100%;
Expand Down
22 changes: 14 additions & 8 deletions dist/grid.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* bundle created at "Mon Feb 13 2017 10:19:09 GMT+0900 (KST)"
* version: 1.8.0
* bundle created at "Fri Feb 24 2017 16:41:07 GMT+0900 (KST)"
* version: 1.8.1
*/
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
Expand Down Expand Up @@ -7848,9 +7848,9 @@
* @private
*/
_getStartRowSpanMinCount: function(startIndex) {
var firstRow = this.dataModel.at(startIndex),
result = 0,
counts;
var firstRow = this.dataModel.at(startIndex);
var result = 0;
var counts;

if (firstRow) {
counts = _.pluck(firstRow.getRowSpanData(), 'count');
Expand All @@ -7867,15 +7867,21 @@
* @private
*/
_getEndRowSpanMaxCount: function(endIndex) {
var lastRow = this.dataModel.at(endIndex),
result = 0,
counts;
var lastRow = this.dataModel.at(endIndex);
var result = 0;
var counts;

if (lastRow) {
counts = _.pluck(lastRow.getRowSpanData(), 'count');
counts.push(0); // count가 양수인 경우(mainRow인 경우)에만 최대값을 구함. 없으면 0
result = _.max(counts);
}

// subtract 1, as the count includes main-cell itself
if (result > 0) {
result -= 1;
}

return result;
},

Expand Down
4 changes: 2 additions & 2 deletions dist/grid.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/grid.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tui-grid",
"version": "1.8.0",
"version": "1.8.1",
"description": "TOAST UI Grid : Powerful data grid control supported by TOAST UI",
"main": "dist/grid.js",
"scripts": {
Expand Down

0 comments on commit bf9540f

Please sign in to comment.