You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is it any problem to add a new feature to the array viewmodel ?
in my code i added "pushAllFromModel" , right next to result.pushFromModel defenition, it seems to work fine, but them , i don't know all the inners of the lib.
Can you add/comment about this ? if there is any issue/inpact , i would like to know.
result.pushAllFromModel = function(items) {
var result2 = [];
for (p = 0, length = items.length; p < length; p++) {
result2[p] = recrusiveFrom(items[p], settings, newContext);
}
result.pushAll(result2);
};
The text was updated successfully, but these errors were encountered:
is it any problem to add a new feature to the array viewmodel ?
in my code i added "pushAllFromModel" , right next to result.pushFromModel defenition, it seems to work fine, but them , i don't know all the inners of the lib.
Can you add/comment about this ? if there is any issue/inpact , i would like to know.
The text was updated successfully, but these errors were encountered: