File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1+ "use strict" ;
12/**
23 * Created by knutandersstokke on 16.10.2016.
34 *
45 */
56/** Manager for events stored in queue. Manager is also responsible for executing events automatically */
67var EventManager = /** @class */ ( function ( ) {
78 function EventManager ( ) {
8- this . delayTime = 600 ; // Original value
9+ this . delayTime = 700 ; // Original value
910 this . nextEvents = [ ] ;
1011 this . previousEvents = [ ] ;
1112 }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ declare var $ : any;
77
88/** Manager for events stored in queue. Manager is also responsible for executing events automatically */
99class EventManager {
10- delayTime :number = 600 ; // Original value
10+ delayTime :number = 700 ; // Original value
1111 nextEvents :FrontendEvent [ ] = [ ] ;
1212 previousEvents :FrontendEvent [ ] = [ ] ;
1313 eventThread : number ;
You can’t perform that action at this time.
0 commit comments