├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── css ├── bootstrap-theme.css └── bootstrap-theme.min.css ├── demo └── bootstrap.html ├── less └── bootstrap-theme.less ├── lib ├── backbone-tree-view.js └── backbone-tree-view.min.js ├── package.json └── src ├── models ├── collection.coffee ├── model.coffee └── settings.coffee ├── plugins ├── basic.coffee └── dnd.coffee ├── preamble.coffee └── views ├── item.coffee ├── list.coffee ├── placeholder.coffee ├── tree.coffee └── view.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/README.md -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /demo/bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/demo/bootstrap.html -------------------------------------------------------------------------------- /less/bootstrap-theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/less/bootstrap-theme.less -------------------------------------------------------------------------------- /lib/backbone-tree-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/lib/backbone-tree-view.js -------------------------------------------------------------------------------- /lib/backbone-tree-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/lib/backbone-tree-view.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/package.json -------------------------------------------------------------------------------- /src/models/collection.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/models/collection.coffee -------------------------------------------------------------------------------- /src/models/model.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/models/model.coffee -------------------------------------------------------------------------------- /src/models/settings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/models/settings.coffee -------------------------------------------------------------------------------- /src/plugins/basic.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/plugins/basic.coffee -------------------------------------------------------------------------------- /src/plugins/dnd.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/plugins/dnd.coffee -------------------------------------------------------------------------------- /src/preamble.coffee: -------------------------------------------------------------------------------- 1 | BackTree = { 2 | plugins : {} 3 | } -------------------------------------------------------------------------------- /src/views/item.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/views/item.coffee -------------------------------------------------------------------------------- /src/views/list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/views/list.coffee -------------------------------------------------------------------------------- /src/views/placeholder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/views/placeholder.coffee -------------------------------------------------------------------------------- /src/views/tree.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/views/tree.coffee -------------------------------------------------------------------------------- /src/views/view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirill-zhirnov/backbone-tree-view/HEAD/src/views/view.coffee --------------------------------------------------------------------------------