diff options
author | st782s <statta@research.att.com> | 2017-05-04 07:48:42 -0400 |
---|---|---|
committer | st782s <statta@research.att.com> | 2017-05-04 12:28:17 -0400 |
commit | b54df0ddd0c6a0372327c5aa3668e5a6458fcd64 (patch) | |
tree | e69cfa9b314a801bd187cf0145d1d4306436229c /ecomp-portal-FE/client/bower_components/jqTree/README.md | |
parent | 39d1e62c84041831bfc52cca73b5ed5efaf57d27 (diff) |
[PORTAL-7] Rebase
This rebasing includes common libraries and common overlays projects
abstraction of components
Change-Id: I9a24a338665c7cd058978e8636bc412d9e2fdce8
Signed-off-by: st782s <statta@research.att.com>
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/jqTree/README.md')
-rw-r--r-- | ecomp-portal-FE/client/bower_components/jqTree/README.md | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/ecomp-portal-FE/client/bower_components/jqTree/README.md b/ecomp-portal-FE/client/bower_components/jqTree/README.md deleted file mode 100644 index 352afcbf..00000000 --- a/ecomp-portal-FE/client/bower_components/jqTree/README.md +++ /dev/null @@ -1,63 +0,0 @@ -[![Travis Status](https://api.travis-ci.org/mbraak/jqTree.svg)](http://travis-ci.org/mbraak/jqTree) [![Coverage Status](https://img.shields.io/coveralls/mbraak/jqTree.svg)](https://coveralls.io/r/mbraak/jqTree) - -[![Bower version](https://img.shields.io/bower/v/jqtree.svg)](https://mbraak.github.io/jqTree/) [![NPM version](https://img.shields.io/npm/v/jqtree.svg)](https://www.npmjs.com/package/jqtree) - -# jqTree - -JqTree is a tree widget. Read more in the [documentation](https://mbraak.github.io/jqTree/). - -![screenshot](https://raw.github.com/mbraak/jqTree/master/screenshot.png) - -## Features - -* Create a tree from JSON data -* Drag and drop -* Works on ie8+, firefox, chrome and safari -* Written in Coffeescript - -The project is hosted on [github](https://github.com/mbraak/jqTree), has a [test suite](http://mbraak.github.io/jqTree/test/test.html). - -## Examples - -Example with ajax data: - -```html -<div id="tree1" data-url="/example_data/"></div> -``` - -```js -$('#tree1').tree(); -``` - -Example with static data: - -```js -var data = [ - { - label: 'node1', id: 1, - children: [ - { label: 'child1', id: 2 }, - { label: 'child2', id: 3 } - ] - }, - { - label: 'node2', id: 4, - children: [ - { label: 'child3', id: 5 } - ] - } -]; -$('#tree1').tree({ - data: data, - autoOpen: true, - dragAndDrop: true -}); -``` - -## Documentation - -The documentation is on http://mbraak.github.io/jqTree/. - -## Thanks - -The code for the mouse widget is heavily inspired by the mouse widget from jquery ui. |