Author: andreapatricelli Date: Thu May 8 08:00:49 2014 New Revision: 1593202
URL: http://svn.apache.org/r1593202 Log: english correction in javascript function added for notification panel Modified: syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BaseModalPage.html syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePopupPage.html syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/Login.html Modified: syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BaseModalPage.html URL: http://svn.apache.org/viewvc/syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BaseModalPage.html?rev=1593202&r1=1593201&r2=1593202&view=diff ============================================================================== --- syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BaseModalPage.html (original) +++ syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BaseModalPage.html Thu May 8 08:00:49 2014 @@ -31,11 +31,11 @@ under the License. $("#tabs").tabs(); }); - var notificationShowedTimes = 0; + var notificationShownTimes = 0; function showNotification(componentId, messagecount) { - notificationShowedTimes++; - timeout = 1700 + (messagecount * 500) + notificationShowedTimes * 200; + notificationShownTimes++; + timeout = 1700 + (messagecount * 500) + notificationShownTimes * 200; $('div#' + componentId).fadeTo('normal', 1.0); setTimeout("$('div#" + componentId + "').fadeOut('normal')", timeout); } Modified: syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html URL: http://svn.apache.org/viewvc/syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html?rev=1593202&r1=1593201&r2=1593202&view=diff ============================================================================== --- syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html (original) +++ syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html Thu May 8 08:00:49 2014 @@ -53,11 +53,11 @@ under the License. } }); - var notificationShowedTimes = 0; + var notificationShownTimes = 0; function showNotification(componentId, messagecount) { - notificationShowedTimes++; - timeout = 1700 + (messagecount * 500) + notificationShowedTimes * 200; + notificationShownTimes++; + timeout = 1700 + (messagecount * 500) + notificationShownTimes * 200; $('div#' + componentId).fadeTo('normal', 1.0); setTimeout("$('div#" + componentId + "').fadeOut('normal')", timeout); } Modified: syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePopupPage.html URL: http://svn.apache.org/viewvc/syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePopupPage.html?rev=1593202&r1=1593201&r2=1593202&view=diff ============================================================================== --- syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePopupPage.html (original) +++ syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/BasePopupPage.html Thu May 8 08:00:49 2014 @@ -33,11 +33,11 @@ under the License. </style> <script type="text/javascript"> - var notificationShowedTimes = 0; + var notificationShownTimes = 0; function showNotification(componentId, messagecount) { - notificationShowedTimes++; - timeout = 1700 + (messagecount * 500) + notificationShowedTimes * 200; + notificationShownTimes++; + timeout = 1700 + (messagecount * 500) + notificationShownTimes * 200; $('div#' + componentId).fadeTo('normal', 1.0); setTimeout("$('div#" + componentId + "').fadeOut('normal')", timeout); } Modified: syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/Login.html URL: http://svn.apache.org/viewvc/syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/Login.html?rev=1593202&r1=1593201&r2=1593202&view=diff ============================================================================== --- syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/Login.html (original) +++ syncope/trunk/console/src/main/resources/org/apache/syncope/console/pages/Login.html Thu May 8 08:00:49 2014 @@ -30,11 +30,11 @@ under the License. <script type="text/javascript"> - var notificationShowedTimes = 0; + var notificationShownTimes = 0; function showNotification(componentId, messagecount) { - notificationShowedTimes++; - timeout = 1700 + (messagecount * 500) + notificationShowedTimes * 200; + notificationShownTimes++; + timeout = 1700 + (messagecount * 500) + notificationShownTimes * 200; $('div#' + componentId).fadeTo('normal', 1.0); setTimeout("$('div#" + componentId + "').fadeOut('normal')", timeout); }
