Index: lams_central/web/main.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/main.jsp,v
diff -u -r1.77.2.39 -r1.77.2.40
--- lams_central/web/main.jsp 17 Dec 2016 12:26:13 -0000 1.77.2.39
+++ lams_central/web/main.jsp 20 Dec 2016 06:03:53 -0000 1.77.2.40
@@ -26,6 +26,7 @@
+
@@ -98,13 +99,33 @@
}
+
var current_date = new Date( );
var client_gmt_offset_minutes = current_date.getTimezoneOffset( );
$('#offset').html( client_gmt_offset_minutes / 60 );
var lams_gmt_offset_minutes = ( + ) / 60000;
if ( client_gmt_offset_minutes != -lams_gmt_offset_minutes ) {
$('#timezoneWarning').html( '
');
- }
+
+ $.blockUI({
+ message: '
',
+ fadeIn: 700,
+ fadeOut: 700,
+ width: 500,
+ timeout: 8000,
+ showOverlay: false,
+ centerY: false,
+ css: {
+ backgroundColor: '#000',
+ '-webkit-border-radius': '10px',
+ '-moz-border-radius': '10px',
+ opacity: .6,
+ color: '#fff'
+ }
+ });
+
+ }
+
});