You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by to...@apache.org on 2014/10/30 04:40:09 UTC

[43/45] git commit: changing tab order in portal

changing tab order in portal


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/0bfca7e3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/0bfca7e3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/0bfca7e3

Branch: refs/heads/key-row-sharding
Commit: 0bfca7e39e40c4efd8e9344303167655c2e1b2d5
Parents: 3e1f33d
Author: Shawn Feldman <sf...@apache.org>
Authored: Wed Oct 29 14:12:48 2014 -0600
Committer: Shawn Feldman <sf...@apache.org>
Committed: Wed Oct 29 14:12:48 2014 -0600

----------------------------------------------------------------------
 portal/js/push/push-config.html | 89 ++++++++++++++++++------------------
 1 file changed, 45 insertions(+), 44 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/0bfca7e3/portal/js/push/push-config.html
----------------------------------------------------------------------
diff --git a/portal/js/push/push-config.html b/portal/js/push/push-config.html
index b4ab1a3..1184964 100644
--- a/portal/js/push/push-config.html
+++ b/portal/js/push/push-config.html
@@ -6,16 +6,16 @@
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
-  
+
   http://www.apache.org/licenses/LICENSE-2.0
-  
+
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
-    <page-title icon="&#9874;" title="Configuration"></page-title>
+    <page-title icon="&#9874;" title="Configure Notifiers"></page-title>
 
 
   <bsmodal id="deleteNotifier"
@@ -30,6 +30,47 @@
 
   <a style="float: right" target="_blank" href="http://apigee.com/docs/usergrid/content/push-notifications" class="notifications-links">Learn more in our docs</a>
   <tabs>
+    <pane heading="Notifiers">
+
+        <bsmodal id="deleteNotifiers"
+                 title="Are you sure you want to delete the notifiers(s)?"
+                 close="hideModal"
+                 closelabel="Cancel"
+                 extrabutton="deleteNotifiersDialog"
+                 extrabuttonlabel="Delete"
+                 ng-cloak>
+            <fieldset>
+                <div class="control-group">
+                </div>
+            </fieldset>
+        </bsmodal>
+
+      <span  class="button-strip">
+        <button class="btn btn-primary" ng-disabled="!valueSelected(notifiersCollection._list)" ng-click="deleteNotifiersDialog()">Delete Notifier(s)</button>
+      </span>
+      <table class="table table-striped collection-list">
+        <tbody>
+        <tr class="zebraRows notifications-row">
+          <td style="width: 30px;"><input type="checkbox"  ng-click="selectAllEntities(notifiersCollection._list,this,'queryBoxesSelected',true)"></td>
+          <td class="notifications-details bold-header">Provider</td>
+          <td class="notifications-details bold-header">Notifier</td>
+        </tr>
+
+        <tr class="zebraRows notifications-row" ng-repeat="notifier in notifiersCollection._list">
+          <td>
+            <input
+              type="checkbox"
+              ng-value="notifier.uuid"
+
+              ng-model="notifier.checked"
+              >
+          </td>
+          <td class="details">{{notifier.get('provider')}}</td>
+          <td class="details">{{notifier.get('name')}}</td>
+        </tr>
+      </table>
+    </pane>
+
     <pane heading="Apple">
       <div style="margin-top: 10px;"> <!-- ng-controller="PushConfigCtrl"-->
         <div class="user-header-title">Apple Push Notification Service</div>
@@ -117,48 +158,8 @@
       </div>
 
     </pane>
-    <pane heading="Notifiers">
-
-        <bsmodal id="deleteNotifiers"
-                 title="Are you sure you want to delete the notifiers(s)?"
-                 close="hideModal"
-                 closelabel="Cancel"
-                 extrabutton="deleteNotifiersDialog"
-                 extrabuttonlabel="Delete"
-                 ng-cloak>
-            <fieldset>
-                <div class="control-group">
-                </div>
-            </fieldset>
-        </bsmodal>
-
-      <span  class="button-strip">
-        <button class="btn btn-primary" ng-disabled="!valueSelected(notifiersCollection._list)" ng-click="deleteNotifiersDialog()">Delete Notifier(s)</button>
-      </span>
-      <table class="table table-striped collection-list">
-        <tbody>
-        <tr class="zebraRows notifications-row">
-          <td style="width: 30px;"><input type="checkbox"  ng-click="selectAllEntities(notifiersCollection._list,this,'queryBoxesSelected',true)"></td>
-          <td class="notifications-details bold-header">Provider</td>
-          <td class="notifications-details bold-header">Notifier</td>
-        </tr>
-
-        <tr class="zebraRows notifications-row" ng-repeat="notifier in notifiersCollection._list">
-          <td>
-            <input
-              type="checkbox"
-              ng-value="notifier.uuid"
-
-              ng-model="notifier.checked"
-              >
-          </td>
-          <td class="details">{{notifier.get('provider')}}</td>
-          <td class="details">{{notifier.get('name')}}</td>
-        </tr>
-      </table>
-    </pane>
 
 
   </tabs>
 
-</div>
\ No newline at end of file
+</div>