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

22 lines
478 B
JavaScript
Raw Normal View History

2022-08-29 20:14:13 +02:00
define([
'lodash',
'taoQtiItem/qtiCreator/model/mixin/editable',
'taoQtiItem/qtiItem/core/choices/GapText'
], function(_, editable, Choice){
"use strict";
var methods = {};
_.extend(methods, editable);
_.extend(methods, {
getDefaultAttributes : function(){
return {
fixed : false,
matchMax : 1,
matchMin : 0
};
}
});
return Choice.extend(methods);
});