zjquery: Add extend method.

This commit is contained in:
Yago González
2017-06-22 23:40:39 +02:00
committed by Steve Howell
parent a9c8efe871
commit 679325733d

View File

@@ -232,6 +232,10 @@ exports.make_zjquery = function () {
};
};
zjquery.extend = function (content, container) {
return _.extend(content, container);
};
return zjquery;
};