fenix-ui-visualization-box
Version:
FENIX resource visualization box
26 lines (21 loc) • 582 B
JavaScript
define([
'jquery',
"../tabs/shared-toolbar-model"
],
function ($, Shared) {
'use strict';
return $.extend(true, {}, Shared, {show : {
selector : {
id : "input",
type : "checkbox",
source : [
{ value : "unit", label : "Unit"},
{ value : "flag", label : "Flag"},
{ value : "code", label : "Code"}
]
},
template : {
title : "Show"
}
}})
});