Fixes issue processing `file` option as a URL.
authordsc <dsc@less.ly>
Fri, 24 Feb 2012 02:58:42 +0000 (18:58 -0800)
committerdsc <dsc@less.ly>
Fri, 24 Feb 2012 02:58:42 +0000 (18:58 -0800)
lib/template/graph-option.jade
msc/dygraph-options/data.yaml

index 20494dc..07d2eb3 100644 (file)
@@ -8,7 +8,8 @@ include browser-helpers
 .field.option(id=option_id, class="#{category_cls} #{tags_cls}")
     a.close &times;
     
-    h3.shortname #{_.shortname(name)}
+    //- h3.shortname #{_.shortname(name)}
+    h3.shortname #{name}
     label.name(for=value_id) #{name}
     input.value(type="text", id=value_id, name=name, class=type_cls, value=value)
     
index 4e3d575..9daa807 100644 (file)
     - overall display
 
 -   name: file
-    type: String (URL of CSV or CSV), GViz DataTable or 2D Array
+    type: String
     default: null
     desc: Sets the data being displayed in the chart. This can only be set when calling updateOptions;
         it cannot be set from the constructor. For a full description of valid data formats, see the Data
-        Formats page.
+        Formats page. String can be a URL of CSV or CSV, GViz DataTable or 2D Array.
     tags:
     - data
     examples: