Anton Shestakov <av6@dwimlabs.net>, Tue, 24 May 2016 12:34:08 +0800
index: remove unused data-wait attribute from calling icon
js/progress.js
Permissions: -rw-r--r--
// Generated by CoffeeScript 1.10.0 var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; window.Tram.ProgressApp = (function(superClass) { extend(ProgressApp, superClass); this.getStyle = bind(this.getStyle, this); return ProgressApp.__super__.constructor.apply(this, arguments); ProgressApp.prototype.initialize = function() { this.listenTo(this.model, 'change:progress', this.updateProgress); ProgressApp.prototype.getStyle = function(progress) { return "width: " + (progress != null ? progress : 0) + "%;"; ProgressApp.prototype.updateProgress = function() { switch (this.model.get('progress')) { return setTimeout((function(_this) { if (_this.model.get('progress') === 0) { return _this.model.set('progress', 10); return setTimeout((function(_this) { if (_this.model.get('progress') === 100) { return _this.model.unset('progress'); ProgressApp.prototype.render = function() { this.rivet = rivets.bind(this.el, { ProgressApp.prototype.remove = function() { return ProgressApp.__super__.remove.apply(this, arguments); //# sourceMappingURL=progress.js.map