Commit 46d0045d by Valera Rozuvan Committed by Alexander Kryklia

GST documentation and code refactoring.

parent f2fd649a
...@@ -2,15 +2,13 @@ ...@@ -2,15 +2,13 @@
// define() functions from Require JS available inside the anonymous function. // define() functions from Require JS available inside the anonymous function.
(function (requirejs, require, define) { (function (requirejs, require, define) {
define('Graph', ['logme'], function (logme) { define('Graph', [], function () {
return Graph; return Graph;
function Graph(gstId, config, state) { function Graph(gstId, config, state) {
var plotDiv, dataSeries, functions; var plotDiv, dataSeries, functions;
logme(config);
plotDiv = $('#' + gstId + '_plot'); plotDiv = $('#' + gstId + '_plot');
if (plotDiv.length === 0) { if (plotDiv.length === 0) {
...@@ -140,8 +138,6 @@ define('Graph', ['logme'], function (logme) { ...@@ -140,8 +138,6 @@ define('Graph', ['logme'], function (logme) {
newFunctionObject['label'] = label; newFunctionObject['label'] = label;
} }
logme(newFunctionObject);
functions.push(newFunctionObject); functions.push(newFunctionObject);
} }
} }
...@@ -160,7 +156,6 @@ define('Graph', ['logme'], function (logme) { ...@@ -160,7 +156,6 @@ define('Graph', ['logme'], function (logme) {
for (c0 = 0; c0 < functions.length; c0 += 1) { for (c0 = 0; c0 < functions.length; c0 += 1) {
functionObj = functions[c0]; functionObj = functions[c0];
logme('Functions obj:', functionObj);
seriesObj = {}; seriesObj = {};
dataPoints = []; dataPoints = [];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment