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

17 lines
416 B
JavaScript

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);
});