Skip to content

Commit

Permalink
remove beta warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitrohatgi committed May 8, 2016
1 parent f78af65 commit b8b842c
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 61 deletions.
5 changes: 2 additions & 3 deletions combined-compiled.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

114 changes: 57 additions & 57 deletions combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ wpd.initApp = function() {// This is run when the page loads.
wpd.layoutManager.initialLayout();
if(!wpd.loadRemoteData()) {
wpd.graphicsWidget.loadImageFromURL('start.png');
wpd.messagePopup.show(wpd.gettext('unstable-version-warning'), wpd.gettext('unstable-version-warning-text'));
//wpd.messagePopup.show(wpd.gettext('unstable-version-warning'), wpd.gettext('unstable-version-warning-text'));
}
document.getElementById('loadingCurtain').style.display = 'none';

Expand Down Expand Up @@ -1516,6 +1516,62 @@ wpd.PlotData = (function () {
})();


/*
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer
Copyright 2010-2016 Ankit Rohatgi <[email protected]>
This file is part of WebPlotDigitizer.
WebPlotDigitizer is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
WebPlotDigitizer is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with WebPlotDigitizer. If not, see <http://www.gnu.org/licenses/>.
*/


var wpd = wpd || {};

wpd.AveragingWindowAlgo = (function () {

var Algo = function () {

var xStep = 5, yStep = 5;

this.getParamList = function () {
return [['ΔX', 'Px', 10], ['ΔY', 'Px', 10]];
};

this.setParam = function (index, val) {
if(index === 0) {
xStep = val;
} else if(index === 1) {
yStep = val;
}
};

this.run = function (plotData) {
var autoDetector = plotData.getAutoDetector(),
dataSeries = plotData.getActiveDataSeries(),
algoCore = new wpd.AveragingWindowCore(autoDetector.binaryData, autoDetector.imageHeight, autoDetector.imageWidth, xStep, yStep, dataSeries);

algoCore.run();
};

};
return Algo;
})();

/*
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer
Expand Down Expand Up @@ -1648,62 +1704,6 @@ wpd.AveragingWindowCore = (function () {
};
return Algo;
})();
/*
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer
Copyright 2010-2016 Ankit Rohatgi <[email protected]>
This file is part of WebPlotDigitizer.
WebPlotDigitizer is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
WebPlotDigitizer is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with WebPlotDigitizer. If not, see <http://www.gnu.org/licenses/>.
*/


var wpd = wpd || {};

wpd.AveragingWindowAlgo = (function () {

var Algo = function () {

var xStep = 5, yStep = 5;

this.getParamList = function () {
return [['ΔX', 'Px', 10], ['ΔY', 'Px', 10]];
};

this.setParam = function (index, val) {
if(index === 0) {
xStep = val;
} else if(index === 1) {
yStep = val;
}
};

this.run = function (plotData) {
var autoDetector = plotData.getAutoDetector(),
dataSeries = plotData.getActiveDataSeries(),
algoCore = new wpd.AveragingWindowCore(autoDetector.binaryData, autoDetector.imageHeight, autoDetector.imageWidth, xStep, yStep, dataSeries);

algoCore.run();
};

};
return Algo;
})();

/*
WebPlotDigitizer - http://arohatgi.info/WebPlotDigitizer
Expand Down
2 changes: 1 addition & 1 deletion javascript/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ wpd.initApp = function() {// This is run when the page loads.
wpd.layoutManager.initialLayout();
if(!wpd.loadRemoteData()) {
wpd.graphicsWidget.loadImageFromURL('start.png');
wpd.messagePopup.show(wpd.gettext('unstable-version-warning'), wpd.gettext('unstable-version-warning-text'));
//wpd.messagePopup.show(wpd.gettext('unstable-version-warning'), wpd.gettext('unstable-version-warning-text'));
}
document.getElementById('loadingCurtain').style.display = 'none';

Expand Down

0 comments on commit b8b842c

Please sign in to comment.