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

17 lines
416 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/Hottext'
], function(_, editable, Choice){
"use strict";
var methods = {};
_.extend(methods, editable);
_.extend(methods, {
getDefaultAttributes : function(){
return {
fixed : false
};
}
});
return Choice.extend(methods);
});