updated by GasGit automation

This commit is contained in:
Bruce McPherson 2016-06-01 11:26:44 +01:00
parent f43a3c8c41
commit 70d2689998

View file

@ -85,8 +85,12 @@ var Process = (function (process) {
wholeSheet:elements.controls.wholeSheet wholeSheet:elements.controls.wholeSheet
}, },
polling: { watching: {
interval:2500, watcher:ClientWatcher.addWatcher({
pollingFrequency:3200,
watch:{sheets:false,active:false},
domain:{fiddler:false,scope:elements.controls.wholeSheet.checked ? "Sheet" : "Active"}
})
}, },
toast: { toast: {
@ -248,9 +252,7 @@ var Process = (function (process) {
* @param {object} result the result * @param {object} result the result
*/ */
process.syncResult = function (result) { process.syncResult = function (result) {
var sc = process.control; var sc = process.control;
// store it // store it
@ -261,6 +263,7 @@ var Process = (function (process) {
sc.headings = result.data.length ? result.data[0] : []; sc.headings = result.data.length ? result.data[0] : [];
sc.data = result.data.length > 1 ? result.data.slice(1) : []; sc.data = result.data.length > 1 ? result.data.slice(1) : [];
// make the data into k.v pairs // make the data into k.v pairs
sc.dataObjects = sc.data.map(function (row) { sc.dataObjects = sc.data.map(function (row) {
@ -272,7 +275,7 @@ var Process = (function (process) {
}); });
process.selectFields(); process.selectFields();
process.drawChart(result.clear); process.drawChart();
// enable inserting // enable inserting
process.control.buttons.insert.disabled = false; process.control.buttons.insert.disabled = false;
@ -281,16 +284,6 @@ var Process = (function (process) {
} }
/**
* every now and again, go and get the latest data
*/
process.startPolling = function () {
setTimeout(function(){
Client.getData(true);
}, process.control.polling.interval);
}
return process; return process;
})( Process || {} ); })( Process || {} );