diff --git a/archive/.htaccess b/archive/.htaccess old mode 100755 new mode 100644 diff --git a/main/css/bootstrap.css b/main/css/bootstrap.css old mode 100755 new mode 100644 diff --git a/main/inc/lib/javascript/bootstrap/bootstrap.js b/main/inc/lib/javascript/bootstrap/bootstrap.js old mode 100755 new mode 100644 diff --git a/main/inc/lib/javascript/chat/js/chat.js b/main/inc/lib/javascript/chat/js/chat.js index 05201fd1ca..defe374170 100755 --- a/main/inc/lib/javascript/chat/js/chat.js +++ b/main/inc/lib/javascript/chat/js/chat.js @@ -64,7 +64,7 @@ $(document).ready(function() { /* Live conditions */ // User name header toogle - $('#chatboxtitlemain').live('click', function() { + $('#chatboxtitlemain').on('click', function() { if (user_status == 1) { stopChatHeartBeat(); $('.user_status_main').html(offline_button); @@ -79,7 +79,7 @@ $(document).ready(function() { }); // User name header toogle - $('.chatboxtitle').live('click', function(){ + $('.chatboxtitle').on('click', function(){ chatbox = $(this).parents(".chatbox"); var chat_id = chatbox.attr('id'); chat_id = chat_id.split('_')[1]; @@ -87,17 +87,16 @@ $(document).ready(function() { }); //Minimize button - $('.chatboxhead .togglelink').live('click', function(){ + $('.chatboxhead .togglelink').on('click', function(){ var chat_id = $(this).attr('rel'); toggleChatBoxGrowth(chat_id); }); //Close button - $('.chatboxhead .closelink').live('click', function(){ + $('.chatboxhead .closelink').on('click', function(){ var chat_id = $(this).attr('rel'); closeChatBox(chat_id); }); - }); diff --git a/main/inc/lib/javascript/jquery.min.js b/main/inc/lib/javascript/jquery.min.js old mode 100755 new mode 100644 diff --git a/main/template/default/agenda/month.tpl b/main/template/default/agenda/month.tpl index a6bfa717b7..5e94f6b838 100755 --- a/main/template/default/agenda/month.tpl +++ b/main/template/default/agenda/month.tpl @@ -79,7 +79,7 @@ $(document).ready(function() { }); $.datepicker.setDefaults( $.datepicker.regional[region_value] ); - + var calendar = $('#calendar').fullCalendar({ header: { left: 'today prev,next',