1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Index: /Users/jan/webdev/moodev/mootools/trunk/Native/Function.js
===================================================================
@@ -51,14 +51,6 @@
create: function(options){
var self = this;
- options = $merge({
- 'bind': self,
- 'arguments': null,
- 'delay': false,
- 'periodical': false,
- 'attempt': false,
- 'event': false
- }, options);
return function(event){
var args = $splat(options.arguments) || arguments;
if (options.event) args = [event || window.event].extend(args);
|