tao-test/app/taoQtiItem/views/js/qtiCreator/model/choices/Gap.js

20 lines
412 B
JavaScript

define([
'lodash',
'taoQtiItem/qtiCreator/model/mixin/editable',
'taoQtiItem/qtiItem/core/choices/Gap'
], function(_, editable, Gap){
"use strict";
var methods = {};
_.extend(methods, editable);
_.extend(methods, {
getDefaultAttributes : function(){
return {
required : false
};
}
});
return Gap.extend(methods);
});