ソースを参照

Moved panel creation button

Rashid Khan 12 年 前
コミット
b2d8f16af3
1 ファイル変更4 行追加3 行削除
  1. 4 3
      partials/roweditor.html

+ 4 - 3
partials/roweditor.html

@@ -20,13 +20,14 @@
   </div>
   </div>
   <div class="row-fluid">
   <div class="row-fluid">
     <h4>New Panel</h4>
     <h4>New Panel</h4>
-    <select class="input-medium" ng-model="panel.type" ng-options="f for f in config.modules|stringSort"></select>
-    <small>Select Type</small>
+    <form class="input-append">
+    <select class="input-medium input-append" ng-model="panel.type" ng-options="f for f in config.modules|stringSort"></select>
+    <small ng-show="!panel.type">Select Type</small> <button ng-show="panel.type" ng-click="add_panel(row,panel); reset_panel();" class="btn btn-success ">Add <i class="icon-plus"></i></button></form>
+
     <div ng-show="!(_.isUndefined(panel.type))">
     <div ng-show="!(_.isUndefined(panel.type))">
       <div ng-include src="'partials/panelgeneral.html'"></div>
       <div ng-include src="'partials/panelgeneral.html'"></div>
 
 
       <div add-panel="{{panel.type}}"></div>
       <div add-panel="{{panel.type}}"></div>
-      <button ng-click="add_panel(row,panel); reset_panel();" class="btn btn-primary">Create Panel</button><br>
     </div>
     </div>
   </div>
   </div>
   <div class="row-fluid">
   <div class="row-fluid">