mirror of
https://github.com/flynx/actions.js.git
synced 2025-10-28 09:50:10 +00:00
fixed minor scope leak...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
78a47e91ac
commit
52cbc1800b
@ -5,8 +5,8 @@
|
||||
* XXX should this redefine its own mixin functionality or use object.js??
|
||||
*
|
||||
**********************************************************************/
|
||||
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)(
|
||||
function(require){ var module={} // makes module AMD/node compatible...
|
||||
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
|
||||
(function(require){var module={} // makes module AMD/node compatible...
|
||||
/*********************************************************************/
|
||||
|
||||
var object = require('ig-object')
|
||||
@ -761,7 +761,7 @@ object.Constructor('Action', Function, {
|
||||
.slice(2)
|
||||
.filter(function(e){ return e !== undefined })
|
||||
func = args.pop()
|
||||
last = args[args.length-1]
|
||||
var last = args[args.length-1]
|
||||
attrs = (last != null && typeof(last) != typeof('str')) ?
|
||||
args.pop()
|
||||
: {}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ig-actions",
|
||||
"version": "3.24.22",
|
||||
"version": "3.24.23",
|
||||
"description": "",
|
||||
"main": "actions.js",
|
||||
"scripts": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user