1
0
Fork 0
forked from 0x2620/oxjs
This commit is contained in:
rlx 2016-02-12 15:59:08 +05:30
commit 92e141cb81

View file

@ -74,7 +74,7 @@ Ox.$ = Ox.element = function $(value) {
other <o> Other DOM object
@*/
add: function add($other) {
elements = Ox.unique(elements.concat(other.elements()));
elements = Ox.unique(elements.concat($other.elements()));
this.length = elements.length;
return this;
},