From c7d97490c634c85e4fd6b4e8fb8f351a6f075bb6 Mon Sep 17 00:00:00 2001 From: andy Date: Thu, 14 May 2015 23:26:16 +0100 Subject: [PATCH] view size --- src/graphxq/views/toolbar.xml | 20 ++++++++++---------- src/static/graphxq/app.js | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/graphxq/views/toolbar.xml b/src/graphxq/views/toolbar.xml index 02dde7e..4cc6e22 100644 --- a/src/graphxq/views/toolbar.xml +++ b/src/graphxq/views/toolbar.xml @@ -3,7 +3,7 @@
@@ -13,7 +13,7 @@ - + Options @@ -21,7 +21,7 @@
@@ -29,35 +29,35 @@ - > + >
diff --git a/src/static/graphxq/app.js b/src/static/graphxq/app.js index 90407a1..cb90376 100644 --- a/src/static/graphxq/app.js +++ b/src/static/graphxq/app.js @@ -32,18 +32,18 @@ function setupEdit(){ }); // toolbar buttons $('a[data-action="lDom"]').click(function (){ - $("#leftPane").css('display','inline').removeAttr('class').addClass("span12"); + $("#leftPane").css('display','inline').removeAttr('class').addClass("col-md-12"); $("#rightPane").removeAttr('class').css("display","none"); resize(); }); $('a[data-action="equality"]').click(function (){ - $("#leftPane").css('display','inline').removeAttr('class').addClass("span6"); - $("#rightPane").css('display','inline').removeAttr('class').addClass("span6"); + $("#leftPane").css('display','inline').removeAttr('class').addClass("col-md-6"); + $("#rightPane").css('display','inline').removeAttr('class').addClass("col-md-6"); resize(); }); $('a[data-action="rDom"]').click(function (){ - $("#rightPane").css('display','inline').removeAttr('class').addClass("span12"); + $("#rightPane").css('display','inline').removeAttr('class').addClass("col-md-12"); $("#leftPane").removeAttr('class').css("display","none"); resize(); });