From b54df0ddd0c6a0372327c5aa3668e5a6458fcd64 Mon Sep 17 00:00:00 2001 From: st782s Date: Thu, 4 May 2017 07:48:42 -0400 Subject: [PORTAL-7] Rebase This rebasing includes common libraries and common overlays projects abstraction of components Change-Id: I9a24a338665c7cd058978e8636bc412d9e2fdce8 Signed-off-by: st782s --- .../jqTree/static/documentation.js | 51 ---------------------- 1 file changed, 51 deletions(-) delete mode 100644 ecomp-portal-FE/client/bower_components/jqTree/static/documentation.js (limited to 'ecomp-portal-FE/client/bower_components/jqTree/static/documentation.js') diff --git a/ecomp-portal-FE/client/bower_components/jqTree/static/documentation.js b/ecomp-portal-FE/client/bower_components/jqTree/static/documentation.js deleted file mode 100644 index 43f50f4e..00000000 --- a/ecomp-portal-FE/client/bower_components/jqTree/static/documentation.js +++ /dev/null @@ -1,51 +0,0 @@ -$(function() { - var $menu = $('#menu'); - var $body = $('body'); - var $h1 = $('#jqtree h1'); - - // title - $h1.html("jqTree"); - - // menu - $menu.affix({ - offset: { - top: $menu.offset().top, - bottom: 0 - } - }); - - $body.scrollspy({ - target: '#menu' - }); - var scrollspy = $body.data('bs.scrollspy'); - - // If no menu item is active, then activate first item - if (! scrollspy.activeTarget) { - scrollspy.activate('#general'); - } - - // demo tree - var data = [ - { - label: 'node1', id: 1, - children: [ - { label: 'child1', id: 2 }, - { label: 'child2', id: 3 } - ] - }, - { - label: 'node2', id: 4, - children: [ - { label: 'child3', id: 5 } - ] - } - ]; - - var $tree1 = $('#tree1'); - - $tree1.tree({ - data: data, - autoOpen: true, - dragAndDrop: true - }); -}); -- cgit 1.2.3-korg