Skip to content

Commit 5e03cd8

Browse files
authored
Removing console.log statements from file.
1 parent a8b4255 commit 5e03cd8

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

zingify/zingify.jquery.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
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) {
@@ -38,7 +38,7 @@
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();
@@ -51,7 +51,7 @@
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 = {};
@@ -107,7 +107,7 @@
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

@@ -183,4 +183,4 @@
183183

184184
}; // end convertToChart() function
185185
}; // end $.fn.extend()
186-
}( jQuery ));
186+
}( jQuery ));

0 commit comments

Comments
 (0)