From 803c6ff51a4e23da93cde894bbbcb926a2b32a68 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Fri, 3 Jan 2014 02:34:57 +0400 Subject: [PATCH] some cleanup... Signed-off-by: Alex A. Naanou --- ui/experiments/panels.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ui/experiments/panels.html b/ui/experiments/panels.html index e1668684..2e9a9a15 100755 --- a/ui/experiments/panels.html +++ b/ui/experiments/panels.html @@ -53,8 +53,10 @@ function toggleAutoHide(){ $(function(){ + toggleThemes() PANEL_ROOT = 'body' + makeSidePanel('left') makeSidePanel('right') @@ -63,19 +65,19 @@ $(function(){ top: 50, left: 50, }) - - makeSubPanel('Test Sub Panel A', $('

Panel A

'), panel, true, true) - makeSubPanel('Test Sub Panel B', $('

Panel B

'), panel, true) - makeSubPanel('Test Sub Panel C', $('

Panel C

'), panel, false) makeFilterPanel(panel, '.moo') - makeSnapshotsPanel(panel, '.moo') makeSubPanel('Test Sub Panel D', $('

Panel D

')) + .parents('.panel') + .css({ + top: 100, + left: 400, + }) })