Merge pull request #182 from kberg/master
authorDan Vanderkam <danvdk@gmail.com>
Mon, 26 Nov 2012 21:41:50 +0000 (13:41 -0800)
committerDan Vanderkam <danvdk@gmail.com>
Mon, 26 Nov 2012 21:41:50 +0000 (13:41 -0800)
Minor change based on danvk's comments in merge 181.

dygraph.js

index 195f915..d42bb9f 100644 (file)
@@ -3399,7 +3399,8 @@ Dygraph.mapLegacyOptions_ = function(attrs) {
     if (typeof(attrs[opt]) != 'undefined') {
       Dygraph.warn("Option " + opt + " is deprecated. Use the " +
           new_opt + " option for the " + axis + " axis instead. " +
-          "(e.g. { axes : { " + axis + " : { " + new_opt + " : ... } } }");
+          "(e.g. { axes : { " + axis + " : { " + new_opt + " : ... } } } " +
+          "(see http://dygraphs.com/per-axis.html for more information.");
       set(axis, new_opt, attrs[opt]);
       delete my_attrs[opt];
     }