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

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