2 name: "OldSchoolSpinner",
4 style: "font-family: Inconsolata, Consolas, Fixedsys, fixed, monospace; font-size: 16px;",
8 animationInterval: null,
11 this.inherited(arguments);
14 if (this.animationInterval)
17 this.animationInterval = setInterval(this.animate.bind(this), 100);
20 clearInterval(this.animationInterval);
21 this.animationInterval = null;
24 this.step = (this.step + 1) % this.steps.length;
25 this.setContent(this.steps[this.step]);