stabile/static/js/fileTree/MixedCheckBox.js @ master
| 1 |
define([ |
|---|---|
| 2 |
'dojo/_base/declare', |
| 3 |
'dijit/form/CheckBox'], |
| 4 |
function(declare, CheckBox){ |
| 5 |
|
| 6 |
return declare('fileTree.MixedCheckBox', CheckBox, { |
| 7 |
// baseClass: [protected] String
|
| 8 |
// Root CSS class of the widget (ex: mixedCheckBox), used to add CSS classes of widget
|
| 9 |
// (ex: "mixedCheckBox mixedCheckBoxChecked mixedCheckBoxFocused mixedCheckBoxMixed")
|
| 10 |
// See _setStateClass().
|
| 11 |
baseClass: 'mixedCheckBox' |
| 12 |
});
|
| 13 |
});
|
| 14 |
|
| 15 |
|