[Argil-svn] SF.net SVN: argil: [488] trunk/src/ArgilCore/Public/scripts/mootools.full. v1.00.js
Status: Alpha
Brought to you by:
tswicegood
|
From: <tsw...@us...> - 2007-02-19 02:33:04
|
Revision: 488
http://argil.svn.sourceforge.net/argil/?rev=488&view=rev
Author: tswicegood
Date: 2007-02-18 18:32:53 -0800 (Sun, 18 Feb 2007)
Log Message:
-----------
Namespace an Event.keys reference and make sure $chk and $type were called within the namespace
Modified Paths:
--------------
trunk/src/ArgilCore/Public/scripts/mootools.full.v1.00.js
Modified: trunk/src/ArgilCore/Public/scripts/mootools.full.v1.00.js
===================================================================
--- trunk/src/ArgilCore/Public/scripts/mootools.full.v1.00.js 2007-02-19 02:29:36 UTC (rev 487)
+++ trunk/src/ArgilCore/Public/scripts/mootools.full.v1.00.js 2007-02-19 02:32:53 UTC (rev 488)
@@ -893,7 +893,7 @@
'periodical': false,
'attempt': false
}, options || {});
- if ($chk(options.arguments) && $type(options.arguments) != 'array') options.arguments = [options.arguments];
+ if (Moo.$chk(options.arguments) && Moo.$type(options.arguments) != 'array') options.arguments = [options.arguments];
return function(event){
var args;
if (options.event){
@@ -2054,7 +2054,7 @@
});
-Event.keys = {
+Moo.Event.keys = {
'enter': 13,
'up': 38,
'down': 40,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|