14 lines
445 B
JavaScript
14 lines
445 B
JavaScript
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);
|
|
}); |