Merge pull request #9 from scud43/master
el undefined in extension objects fix
This commit is contained in:
commit
d75001d5bd
7
kis.js
7
kis.js
@ -69,6 +69,13 @@
|
|||||||
// Make a copy before adding properties
|
// Make a copy before adding properties
|
||||||
var self = dcopy($_);
|
var self = dcopy($_);
|
||||||
|
|
||||||
|
// Give sel to each extension.
|
||||||
|
for(var i in self)
|
||||||
|
{
|
||||||
|
if(typeof self[i] === "object")
|
||||||
|
self[i].el = sel;
|
||||||
|
}
|
||||||
|
|
||||||
self.el = sel;
|
self.el = sel;
|
||||||
|
|
||||||
return self;
|
return self;
|
||||||
|
Loading…
Reference in New Issue
Block a user