Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "timbles", | ||
"version": "1.0.2", | ||
"description": "a very simple jQuery plugin for tables, made by the person who literally did not invent tables", | ||
"version": "1.0.3", | ||
"description": "an p chill jQuery table plugin, made by someone who literally did not invent tables", | ||
"main": "timbles", | ||
@@ -6,0 +6,0 @@ "directories": { |
@@ -118,4 +118,4 @@ /** | ||
// get external json file given | ||
$.getJSON( data.dataConfig.data, function(data) { | ||
methods.generateRowsFromData.call($this, data, $this) | ||
$.getJSON( data.dataConfig.data, function(json) { | ||
methods.generateRowsFromData.call($this, json, data.dataConfig.columns, $this) | ||
}); | ||
@@ -126,3 +126,3 @@ } | ||
generateRowsFromData : function(data, columnConfig,thisTable) { | ||
generateRowsFromData : function(data, columnConfig, thisTable) { | ||
$.each(data, function(index, row){ | ||
@@ -129,0 +129,0 @@ var $currentRow = $('<tr>'); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
189402
19
2935