[Groonga-commit] groonga/groonga-admin at 2702689 [master] Use list-group

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Dec 31 11:15:50 JST 2014


Kouhei Sutou	2014-12-31 11:15:50 +0900 (Wed, 31 Dec 2014)

  New Revision: 2702689a7684bce9a38f280713e1f8943d0d58bd
  https://github.com/groonga/groonga-admin/commit/2702689a7684bce9a38f280713e1f8943d0d58bd

  Message:
    Use list-group

  Modified files:
    app/views/columns/show.html
    app/views/tables/show.html

  Modified: app/views/columns/show.html (+7 -7)
===================================================================
--- app/views/columns/show.html    2014-12-31 11:13:57 +0900 (e3d9cd3)
+++ app/views/columns/show.html    2014-12-31 11:15:50 +0900 (c8480f9)
@@ -17,13 +17,13 @@
         <h2 class="panel-title">Columns</h2>
       </div>
       <div class="panel-body">
-        <ul>
-          <li ng-repeat="c in column.table.columns track by $index">
-            <a href="#/tables/{{column.table.name}}/columns/{{c.name}}">
-              {{c.name}}
-            </a>
-          </li>
-        </ul>
+        <div class="list-group">
+          <a ng-repeat="c in column.table.columns track by $index"
+             class="list-group-item"
+             href="#/tables/{{column.table.name}}/columns/{{c.name}}">
+            {{c.name}}
+          </a>
+        </div>
       </div>
     </div>
   </div>

  Modified: app/views/tables/show.html (+7 -5)
===================================================================
--- app/views/tables/show.html    2014-12-31 11:13:57 +0900 (bf359b6)
+++ app/views/tables/show.html    2014-12-31 11:15:50 +0900 (6c00bcf)
@@ -12,11 +12,13 @@
         <h2 class="panel-title">Tables</h2>
       </div>
       <div class="panel-body">
-        <ul>
-          <li ng-repeat="table in tables track by $index">
-            <a href="#/tables/{{table.name}}">{{table.name}}</a>
-          </li>
-        </ul>
+        <div class="list-group">
+          <a ng-repeat="table in tables track by $index"
+             class="list-group-item"
+             href="#/tables/{{table.name}}">
+            {{table.name}}
+          </a>
+        </div>
       </div>
     </div>
   </div>
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index