fixed issue with overriding core components

This commit is contained in:
Tyler Wolf 2013-10-17 12:11:41 -04:00
parent 2185020fe1
commit b84975efc1
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "nvd3",
"version": "1.1.13-beta",
"version": "1.1.14-beta",
"homepage": "http://www.nvd3.org",
"authors": [
"Bob Monteverde",

View File

@ -2,14 +2,14 @@
var nv = window.nv || {};
nv.version = '1.1.13b';
nv.version = '1.1.14b';
nv.dev = true //set false when in production
window.nv = nv;
nv.tooltip = {}; // For the tooltip system
nv.tooltip = nv.tooltip || {}; // For the tooltip system
nv.utils = nv.utils || {}; // Utility subsystem
nv.models = {}; //stores all the possible models/components
nv.models = nv.models || {}; //stores all the possible models/components
nv.charts = {}; //stores all the ready to use charts
nv.graphs = []; //stores all the graphs currently on the page
nv.logs = {}; //stores some statistics and potential error messages