Comparing version 1.2.0 to 1.2.1
@@ -540,3 +540,3 @@ (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | ||
return { | ||
version: '1.2.0', | ||
version: '1.2.1', | ||
eventPrefix: 'vuetable:', | ||
@@ -630,3 +630,3 @@ tableData: null, | ||
if (self.tablePagination === null) { | ||
console.warn('vuetable: pagination-path "' + self.paginationPath + '"" not found. ' + 'It looks like the data returned from the sever does not have pagination information.'); | ||
console.warn('vuetable: pagination-path "' + self.paginationPath + '" not found. ' + 'It looks like the data returned from the sever does not have pagination information ' + 'or you may have set it incorrectly.'); | ||
} | ||
@@ -836,3 +836,3 @@ | ||
keys.forEach(function (key) { | ||
if (typeof obj[key] != 'undefined' && obj[key] !== null) { | ||
if (obj !== null && typeof obj[key] != 'undefined' && obj[key] !== null) { | ||
obj = obj[key]; | ||
@@ -839,0 +839,0 @@ } else { |
{ | ||
"name": "vuetable", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "vue.js table component that will automatically request JSON data from server and display them nicely in HTML table with swap-able/extensible pagination component", | ||
"main": "src/vue-table.js", | ||
"main": "dist/vue-table.js", | ||
"dependencies": { | ||
@@ -7,0 +7,0 @@ "vue": "~1.0.21", |
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
184643