forked from pjekel/cbtree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.js
29 lines (27 loc) · 888 Bytes
/
base.js
1
//// Copyright (c) 2010-2012, Peter Jekel// All rights reserved.//// The Checkbox Tree (cbtree), also known as the 'Dijit Tree with Multi State Checkboxes'// is released under to following three licenses://// 1 - BSD 2-Clause (http://thejekels.com/js/cbtree/LICENSE)// 2 - The "New" BSD License (http://bugs.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13)// 3 - The Academic Free License (http://bugs.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43)//// In case of doubt, the BSD 2-Clause license takes precedence.//define([ "./CheckBox", "./StoreModel", "./Tree" ], function( CheckBox, StoreModel, Tree ){ // Define the 'Dijit Tree With CheckBoxes' (cbtree) without the optional // Tree Styling extensions. var cbtree = { Tree: Tree, StoreModel: StoreModel, CheckBox: CheckBox }; return cbtree;});