Example #1
0
		desolve: function () {
			if (this.active) {
				this.active = false;
				this.video.pause();
				this.video.src = "about:blank";
				
				UserEvent.off('resize', this.resize.bind(this));
				AppEvent.trigger('startanimation');
			}
		}
Example #2
0
		removeEventListeners: function () {
			UserEvent.off('keydown', this.keydown);
		},