You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2016/04/27 12:45:26 UTC

syncope git commit: [SYNCOPE-825] Fix provided by disabling Bootstrap.js plugin for AdminLTE

Repository: syncope
Updated Branches:
  refs/heads/master a87583277 -> 826065f06


[SYNCOPE-825] Fix provided by disabling Bootstrap.js plugin for AdminLTE


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

Branch: refs/heads/master
Commit: 826065f0610ea485b6d3bb91634e6e3dcb93e966
Parents: a875832
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Wed Apr 27 12:45:20 2016 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Wed Apr 27 12:45:20 2016 +0200

----------------------------------------------------------------------
 .../java/org/apache/syncope/client/console/panels/Realm.java   | 6 +++---
 .../org/apache/syncope/client/console/pages/BasePage.html      | 2 ++
 2 files changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/826065f0/client/console/src/main/java/org/apache/syncope/client/console/panels/Realm.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/panels/Realm.java b/client/console/src/main/java/org/apache/syncope/client/console/panels/Realm.java
index 9ffb476..7b3546a 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/panels/Realm.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/panels/Realm.java
@@ -71,8 +71,7 @@ public abstract class Realm extends Panel {
     }
 
     private List<ITab> buildTabList(final PageReference pageRef) {
-
-        final List<ITab> tabs = new ArrayList<>();
+        List<ITab> tabs = new ArrayList<>();
 
         tabs.add(new AbstractTab(new Model<>("DETAILS")) {
 
@@ -80,7 +79,7 @@ public abstract class Realm extends Panel {
 
             @Override
             public Panel getPanel(final String panelId) {
-                final ActionLinksPanel<RealmTO> actionLinksPanel = ActionLinksPanel.<RealmTO>builder().
+                ActionLinksPanel<RealmTO> actionLinksPanel = ActionLinksPanel.<RealmTO>builder().
                         add(new ActionLink<RealmTO>(realmTO) {
 
                             private static final long serialVersionUID = 2802988981431379827L;
@@ -132,6 +131,7 @@ public abstract class Realm extends Panel {
                 }
             });
         }
+
         return tabs;
     }
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/826065f0/client/console/src/main/resources/org/apache/syncope/client/console/pages/BasePage.html
----------------------------------------------------------------------
diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/BasePage.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/BasePage.html
index 6c705a9..5fee51a 100644
--- a/client/console/src/main/resources/org/apache/syncope/client/console/pages/BasePage.html
+++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/BasePage.html
@@ -37,6 +37,8 @@ under the License.
     <script type="text/javascript">
       // global variable for IndicatingOnConfirmAjaxLink
       var proceed = false;
+      // configure AdminLTE
+      $.AdminLTE.options['enableBSToppltip'] = false;
     </script>
   </head>
   <body class="skin-green-light hold-transition sidebar-mini" wicket:id="body">