vendor/assets/javascripts/jqplot-plugins/jqplot.dateAxisRenderer.js in outfielding-jqplot-rails-1.0.7 vs vendor/assets/javascripts/jqplot-plugins/jqplot.dateAxisRenderer.js in outfielding-jqplot-rails-1.0.8

- old
+ new

@@ -1,11 +1,11 @@ /** * jqPlot * Pure JavaScript plotting plugin using jQuery * - * Version: 1.0.7 - * Revision: 1224 + * Version: 1.0.8 + * Revision: 1250 * * Copyright (c) 2009-2013 Chris Leonello * jqPlot is currently available for use in all personal or commercial projects * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can @@ -478,19 +478,19 @@ nttarget = Math.ceil((tdim-threshold)/spacingFactor + 1); titarget = (max - min) / (nttarget - 1); } // If tickInterval is specified, we'll try to honor it. - // Not gauranteed to get this interval, but we'll get as close as + // Not guaranteed to get this interval, but we'll get as close as // we can. // tickInterval will be used before numberTicks, that is if // both are specified, numberTicks will be ignored. else if (this.tickInterval) { titarget = new $.jsDate(0).add(daTickInterval[0], daTickInterval[1]).getTime(); } // if numberTicks specified, try to honor it. - // Not gauranteed, but will try to get close. + // Not guaranteed, but will try to get close. else if (this.numberTicks) { nttarget = this.numberTicks; titarget = (max - min) / (nttarget - 1); }