Changeset 7993
- Timestamp:
- 04/07/07 16:46:30 (21 months ago)
- Location:
- dojo/trunk/_base
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/fx.js
r7980 r7993 6 6 7 7 /* 8 Animation package based on Dan Pupius' work: http://pupius.co.uk/js/Toolkit.Drawing.js 8 Animation losely package based on Dan Pupius' work: 9 http://pupius.co.uk/js/Toolkit.Drawing.js 9 10 */ 10 11 11 dojo._Line = function(/*int*/ start, /*int*/ end){ 12 12 // summary: dojo._Line is the object used to generate values … … 50 50 easing: null, 51 51 repeatCount: 0, 52 rate: 10, 52 rate: 10, // 100 fps 53 53 54 54 // events -
dojo/trunk/_base/lang.js
r7989 r7993 169 169 return dojo.hitch.apply(dojo, args); 170 170 } 171