Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed small bug in EventListenerRegitry |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
12079866b716459928650a57ac224389 |
User & Date: | setok@scred.com 2011-07-21 13:54:52.000 |
Context
2013-09-25
| ||
14:07 | Moved up-to-date storkCore files over check-in: 00f02bb3b1 user: setok@scred.com tags: trunk | |
13:40 | Added some utility things. But basically ignore this as we're bringing in the much updated storkCore. check-in: f2612cb6c8 user: setok@scred.com tags: trunk | |
2011-07-21
| ||
13:54 | Fixed small bug in EventListenerRegitry check-in: 12079866b7 user: setok@scred.com tags: trunk | |
2011-07-19
| ||
16:47 | Added EventListenerRegistry Used to register objects as listeners of events. check-in: b064d5779a user: setok@scred.com tags: trunk | |
Changes
Changes to storkCore.js.
︙ | ︙ | |||
162 163 164 165 166 167 168 169 170 171 172 173 174 175 | var Stork = clone(Object); var EventListenerRegistry = clone(Stork); EventListenerRegistry.catchTransitionEnd = function(element, object) { var my = this; if (! cssSupports("transitionProperty")) { // Transitions not supported by browser, so directly call the // handler. Transition happened immediately. | > | 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | var Stork = clone(Object); var EventListenerRegistry = clone(Stork); EventListenerRegistry.transitionEndHandler = []; EventListenerRegistry.catchTransitionEnd = function(element, object) { var my = this; if (! cssSupports("transitionProperty")) { // Transitions not supported by browser, so directly call the // handler. Transition happened immediately. |
︙ | ︙ |