File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 * }
2424 */
2525 function convertToChart ( i , options ) {
26- console . log ( "convertToChart:" ) ;
27- console . log ( "\toptions =" , JSON . stringify ( options ) ) ;
26+ // console.log("convertToChart:");
27+ // console.log("\toptions =", JSON.stringify(options));
2828
2929 var target = undefined ;
3030 if ( options . target !== undefined ) {
3838 target . attr ( 'id' , options . target ) ;
3939 }
4040
41- console . log ( "\ttarget =" , target ) ;
41+ // console.log("\ttarget =", target);
4242
4343 if ( options . hideTable === true ) {
4444 $ ( this ) . hide ( ) ;
5151 // Each chart needs a UNIQUE identifier
5252 var zingchartID = options . target + '_zc_chart' ;
5353 if ( i > 0 ) zingchartID += i ;
54- console . log ( 'zingchartID =' , zingchartID ) ;
54+ // console.log('zingchartID =', zingchartID);
5555 $ ( target ) . attr ( 'id' , zingchartID ) ;
5656
5757 var data = { } ;
107107 var jsonString = $ ( this ) . attr ( 'data-zc' ) || $ ( this ) . attr ( 'data-zingchart' ) ;
108108 attributes = JSON . parse ( jsonString ) ;
109109 } catch ( err ) {
110- console . log ( err ) ;
110+ // console.log(err);
111111 attributes = { } ;
112112 }
113113
183183
184184 } ; // end convertToChart() function
185185 } ; // end $.fn.extend()
186- } ( jQuery ) ) ;
186+ } ( jQuery ) ) ;
You can’t perform that action at this time.
0 commit comments