updated jquery to version 1.11, updated themes frost and diabook where necessary

This commit is contained in:
hauke 2014-09-06 16:21:03 +02:00
parent 5f9845d235
commit 87fa2ee2af
24 changed files with 195 additions and 743 deletions

View file

@ -22,8 +22,8 @@ function ACL(backend_url, preset, automention){
/*events*/
that.showall.click(that.on_showall);
$(".acl-button-show").live('click', that.on_button_show);
$(".acl-button-hide").live('click', that.on_button_hide);
$(document).on("click", ".acl-button-show", that.on_button_show);
$(document).on("click", ".acl-button-hide", that.on_button_hide);
$("#acl-search").keypress(that.on_search);
$("#acl-wrapper").parents("form").submit(that.on_submit);

2
js/jquery-migrate.js vendored Normal file

File diff suppressed because one or more lines are too long

8
js/jquery.js vendored

File diff suppressed because one or more lines are too long

View file

@ -22,7 +22,6 @@
var prev = null;
var livetime = null;
var force_update = false;
var msie = false;
var stopped = false;
var totStopped = false;
var timer = null;
@ -37,8 +36,6 @@
$(function() {
$.ajaxSetup({cache: false});
msie = $.browser.msie ;
/* setup tooltips *//*
$("a,.tt").each(function(){
var e = $(this);
@ -307,7 +304,7 @@
force_update = true;
var udargs = ((netargs.length) ? '/' + netargs : '');
var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page + '&msie=' + ((msie) ? 1 : 0) + '&force=' + ((force_update) ? 1 : 0);
var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page + '&force=' + ((force_update) ? 1 : 0);
$.get(update_url,function(data) {
in_progress = false;

4
js/modernizr.js Normal file

File diff suppressed because one or more lines are too long