tao-test/app/taoQtiItem/views/js/qtiCreator/model/mixin/editableContainer.js

15 lines
406 B
JavaScript

define(['taoQtiItem/qtiCreator/model/helper/container'], function(containerHelper){
"use strict";
var methods = {
createElements : function(body, callback){
var _this = this;
containerHelper.createElements(_this.getBody(), body, function(newElts){
callback.call(_this, newElts);
});
}
};
return methods;
});