You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2013/09/09 11:54:01 UTC

[41/50] [abbrv] git commit: updated refs/heads/1867-feature-plugins to 8aad450

Fixing cases of resize collumns to use the generic selectors


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/e422d9ee
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/e422d9ee
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/e422d9ee

Branch: refs/heads/1867-feature-plugins
Commit: e422d9ee6a79df041a4b843849ac6143b8789381
Parents: e361dcc
Author: suelockwood <de...@gmail.com>
Authored: Fri Sep 6 10:51:15 2013 -0400
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Mon Sep 9 11:16:45 2013 +0200

----------------------------------------------------------------------
 src/fauxton/app/modules/documents/views.js               | 5 -----
 src/fauxton/app/modules/fauxton/base.js                  | 4 +---
 src/fauxton/app/templates/documents/view_editor.html     | 2 +-
 src/fauxton/app/templates/layouts/with_tabs_sidebar.html | 2 +-
 4 files changed, 3 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/e422d9ee/src/fauxton/app/modules/documents/views.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/modules/documents/views.js b/src/fauxton/app/modules/documents/views.js
index 8f9af49..6b63c15 100644
--- a/src/fauxton/app/modules/documents/views.js
+++ b/src/fauxton/app/modules/documents/views.js
@@ -1192,11 +1192,6 @@ function(app, FauxtonAPI, Documents, pouchdb, Codemirror, JSHint, resizeColumns)
 
     afterRender: function() {
 
-      //resizeAnimation
-      app.resizeColumns = new resizeColumns({
-            selectorElements: '#dashboard-content, #dashboard-upper-menu, #db-views-tabs-nav'
-      });
-      app.resizeColumns.onResizeHandler();
 
       var that = this, 
           mapFun = this.$("#map-function"),

http://git-wip-us.apache.org/repos/asf/couchdb/blob/e422d9ee/src/fauxton/app/modules/fauxton/base.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/modules/fauxton/base.js b/src/fauxton/app/modules/fauxton/base.js
index 0b11849..8fa40fa 100644
--- a/src/fauxton/app/modules/fauxton/base.js
+++ b/src/fauxton/app/modules/fauxton/base.js
@@ -22,9 +22,7 @@ function(app, Backbone, resizeColumns) {
 
 
    //resizeAnimation
-   app.resizeColumns = new resizeColumns({
-        selectorElements: '#dashboard-content, #dashboard-upper-menu'
-   });
+   app.resizeColumns = new resizeColumns({});
    app.resizeColumns.onResizeHandler();
 
   var Fauxton = app.module();

http://git-wip-us.apache.org/repos/asf/couchdb/blob/e422d9ee/src/fauxton/app/templates/documents/view_editor.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/templates/documents/view_editor.html b/src/fauxton/app/templates/documents/view_editor.html
index 9aaa503..13b92b1 100644
--- a/src/fauxton/app/templates/documents/view_editor.html
+++ b/src/fauxton/app/templates/documents/view_editor.html
@@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under
 the License.
 -->
 <div class="row">
-  <ul class="nav nav-tabs" id="db-views-tabs-nav">
+  <ul class="nav nav-tabs window-resizeable" id="db-views-tabs-nav">
     <li class="active"> <a class="fonticon-wrench fonticon" data-toggle="tab" href="#index"><% if (newView) { %>Create Index <% } else { %>Edit Index <% } %></a></li>
     <li><a class="fonticon-plus fonticon" href="#query" data-toggle="tab">Advanced Options</a></li>
     <li><a href="#metadata" data-toggle="tab">Design Doc Metadata</a></li>

http://git-wip-us.apache.org/repos/asf/couchdb/blob/e422d9ee/src/fauxton/app/templates/layouts/with_tabs_sidebar.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/templates/layouts/with_tabs_sidebar.html b/src/fauxton/app/templates/layouts/with_tabs_sidebar.html
index 69d723b..d4efc8d 100644
--- a/src/fauxton/app/templates/layouts/with_tabs_sidebar.html
+++ b/src/fauxton/app/templates/layouts/with_tabs_sidebar.html
@@ -29,7 +29,7 @@ the License.
 
     <section id="dashboard-content" class="list pull-right window-resizeable">
       <div class="inner">
-        <div id="dashboard-upper-menu"></div>
+        <div id="dashboard-upper-menu" class="window-resizeable"></div>
         <div id="dashboard-upper-content"></div>
 
         <div id="dashboard-lower-content"></div>