mirror of
https://github.com/flynx/actions.js.git
synced 2025-10-28 18:00:11 +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??
|
* XXX should this redefine its own mixin functionality or use object.js??
|
||||||
*
|
*
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)(
|
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
|
||||||
function(require){ var module={} // makes module AMD/node compatible...
|
(function(require){var module={} // makes module AMD/node compatible...
|
||||||
/*********************************************************************/
|
/*********************************************************************/
|
||||||
|
|
||||||
var object = require('ig-object')
|
var object = require('ig-object')
|
||||||
@ -761,7 +761,7 @@ object.Constructor('Action', Function, {
|
|||||||
.slice(2)
|
.slice(2)
|
||||||
.filter(function(e){ return e !== undefined })
|
.filter(function(e){ return e !== undefined })
|
||||||
func = args.pop()
|
func = args.pop()
|
||||||
last = args[args.length-1]
|
var last = args[args.length-1]
|
||||||
attrs = (last != null && typeof(last) != typeof('str')) ?
|
attrs = (last != null && typeof(last) != typeof('str')) ?
|
||||||
args.pop()
|
args.pop()
|
||||||
: {}
|
: {}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ig-actions",
|
"name": "ig-actions",
|
||||||
"version": "3.24.22",
|
"version": "3.24.23",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "actions.js",
|
"main": "actions.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user