Skip to content

Commit

Permalink
version bump 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
itayw committed Aug 17, 2015
1 parent 8f6b38b commit 3ea7a39
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 33 deletions.
16 changes: 8 additions & 8 deletions build/release/joola.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/release/joola.min.css

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions build/release/joola.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/release/joola.min.js.map

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions build/temp/joola.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/temp/meta.json

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,7 +1,7 @@
{
"name": "joola.sdk",
"preferGlobal": false,
"version": "0.8.6",
"version": "0.8.7",
"author": "Joola <[email protected]>",
"description": "joola's software development kit (SDK)",
"engine": "node >= 0.10.x",
Expand Down
10 changes: 5 additions & 5 deletions src/lib/viz/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ var Table = module.exports = function (options, callback) {
if (self.options.checkboxes) {
$td = $$('<td class="checkbox"><input type="checkbox"></td>');
$tr.append($td);
uuid = joola.common.uuid()
uuid = joola.common.uuid();
$td.data('uuid', uuid);
$td.attr('data-uuid', uuid);
$td.find('input[type="checkbox"]').on('click', function () {
Expand Down Expand Up @@ -312,7 +312,7 @@ var Table = module.exports = function (options, callback) {
//checkbox
if (self.options.checkboxes) {
$td = $$('<td class="checkbox"><input type="checkbox"></td>');
uuid = joola.common.uuid()
uuid = joola.common.uuid();
$td.find('input[type="checkbox"]').on('click', function () {
var filters = [];
var action = 'add';
Expand Down Expand Up @@ -376,7 +376,7 @@ var Table = module.exports = function (options, callback) {
$tr.append($td);
}

var $td = $$('<td class="value dimension" colspan="' + _query.dimensions.length + '">' + text + '</td>');
$td = $$('<td class="value dimension" colspan="' + _query.dimensions.length + '">' + text + '</td>');
$tr.append($td);

$tbody.append($tr);
Expand Down Expand Up @@ -457,7 +457,7 @@ var Table = module.exports = function (options, callback) {
//checkbox
if (self.options.checkboxes) {
$td = $$('<td class="checkbox"><input type="checkbox"></td>');
uuid = joola.common.uuid()
uuid = joola.common.uuid();
$td.find('input[type="checkbox"]').on('click', function () {
var filters = [];
var action = 'add';
Expand Down Expand Up @@ -516,7 +516,7 @@ var Table = module.exports = function (options, callback) {
$tr = $$('<tr class="data-row" data-id="' + comparePoint.key + '"></tr>');
if (self.options.checkboxes) {
$td = $$('<td class="checkbox"></td>');
uuid = joola.common.uuid()
uuid = joola.common.uuid();
$td.find('input[type="checkbox"]').on('click', function () {
var filters = [];
var action = 'add';
Expand Down

0 comments on commit 3ea7a39

Please sign in to comment.