Sha256: 5dc9059edf715b4935a38ce8310358a8bd6dd519c44568472a4301a0843c2625
Contents?: true
Size: 1.85 KB
Versions: 4
Compression:
Stored size: 1.85 KB
Contents
// Generated by CoffeeScript 1.7.1 gon._timers = {}; gon.watch = function(name, possibleOptions, possibleCallback) { var callback, key, options, performAjax, timer, value, _base, _ref; if (typeof $ === "undefined" || $ === null) { return; } if (typeof possibleOptions === 'object') { options = {}; _ref = gon.watchedVariables[name]; for (key in _ref) { value = _ref[key]; options[key] = value; } for (key in possibleOptions) { value = possibleOptions[key]; options[key] = value; } callback = possibleCallback; } else { options = gon.watchedVariables[name]; callback = possibleOptions; } performAjax = function() { var xhr; xhr = $.ajax({ type: options.type || 'GET', url: options.url, data: { _method: options.method, gon_return_variable: true, gon_watched_variable: name } }); return xhr.done(callback); }; if (options.interval) { timer = setInterval(performAjax, options.interval); if ((_base = gon._timers)[name] == null) { _base[name] = []; } return gon._timers[name].push({ timer: timer, fn: callback }); } else { return performAjax(); } }; gon.unwatch = function(name, fn) { var index, timer, _i, _len, _ref; _ref = gon._timers[name]; for (index = _i = 0, _len = _ref.length; _i < _len; index = ++_i) { timer = _ref[index]; if (!(timer.fn === fn)) { continue; } clearInterval(timer.timer); gon._timers[name].splice(index, 1); return; } }; gon.unwatchAll = function() { var timer, timers, variable, _i, _len, _ref; _ref = gon._timers; for (variable in _ref) { timers = _ref[variable]; for (_i = 0, _len = timers.length; _i < _len; _i++) { timer = timers[_i]; clearInterval(timer.timer); } } return gon._timers = {}; };
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gon-6.1.0 | js/watch.js |
gon-6.0.1 | js/watch.js |
gon-6.0.0 | js/watch.js |
gon-5.2.3 | js/watch.js |