js chrome und ie

This commit is contained in:
Martin Müller 2014-05-14 00:06:53 +02:00
parent 6eadfb2c25
commit 505b15b5cd
1 changed files with 226 additions and 204 deletions

View File

@ -2,230 +2,252 @@
* To change this template, choose Tools | Templates * To change this template, choose Tools | Templates
* and open the template in the editor. * and open the template in the editor.
*/ */
var global_load = null; var global_load = null;
!function($) { !function($) {
$(function() { $(function() {
$body = $("body"); $body = $("body");
$(document).on({ $(document).on({
ajaxStart: function() { $body.addClass("loading"); }, ajaxStart: function() {
ajaxStop: function() { $body.removeClass("loading"); } $body.addClass("loading");
}); },
$(window).bind('popstate',function(evt){ ajaxStop: function() {
console.log(evt.target.pageurl); $body.removeClass("loading");
console.log(evt); }
if(evt.originalEvent.state !== null) { });
load(location.href,{'history':false},false); $(window).bind('popstate', function(evt) {
} console.log(evt.target.pageurl);
}); console.log(evt);
$("#popup").modal({'remote':false,'show':false}); if (evt.originalEvent.state !== null) {
$("#popup").on('show.bs.modal',function(e){ load(location.href, {'history': false}, false);
$.ajax({url:$(e.relatedTarget).attr("href"),success:function(data){ }
$("#popup .modal-title").html($(e.relatedTarget).attr("title")); });
$("#popup .modal-body").html($("#container div.box",data).html()); $("#popup").modal({'remote': false, 'show': false});
} ,error:function(data){}}); $("#popup").on('show.bs.modal', function(e) {
}); $.ajax({url: $(e.relatedTarget).attr("href"), success: function(data) {
function stopLoad(e){ $("#popup .modal-title").html($(e.relatedTarget).attr("title"));
if (!e) $("#popup .modal-body").html($("#container div.box", data).html());
e = window.event; }, error: function(data) {
if (e.preventDefault) }});
e.preventDefault(); });
if (e.stopPropagation) { function stopLoad(e) {
e.stopPropagation(); if (!e)
}else{ e = window.event;
e.cancelBubble = true; if (e.preventDefault)
} e.preventDefault();
} if (e.stopPropagation) {
function event(where){ e.stopPropagation();
/* Hotfix Ticket: 215*/ } else {
$(where+' img').each(function(){ $(this).attr('src',$(this).attr('src')+ '?' + (new Date()).getTime()); }); e.cancelBubble = true;
}
$("#alert .alert").alert();
$(where+' textarea').wysihtml5();
$(where+' select').each(function(){
$(this).select2({allowClear: true});
});
$(where+' .dropdown-toggle').dropdown();
$(where+" a").tooltip();;
$(where+" a").each(function(that){
if($(this).attr("rel")!=="external" && $(this).attr("ref")!=="eventOff" && !$(this).parents('ul').hasClass("wysihtml5-toolbar") && !$(this).hasClass(".select2-choice") && !$(this).parents('form').hasClass('tableForm'))
$(this).click(function(e){
load($(this).attr('href'),{},($(this).attr('rel')=="tab"));
return false;
});
});
$(where+" form").submit(function(e){
if(!$(this).hasClass("hide-form") && $(this).attr('enctype')!='multipart/form-data' ){
$(":input[ name *= '_wysihtml5_mod' ]",this).remove();
//stopLoad(e);
if($(this).attr("back"))
back=window.location.href;
else
back=null;
load($(this).attr("action"),{data:$(this).serialize(), type:$(this).attr("method"),back:back},($(this).attr('rel')=="tab"));
return false;
}
});
$(where+" form[ enctype *= 'multipart/form-data' ]").each(function(evt){
if (!$('#fileUpload').length)
$('body').append('<iframe id="fileUpload" name="fileUpload" style="display:none" />');
$(this).attr('target','fileUpload');
$(":input[ name *= '_wysihtml5_mod' ]",this).remove();
$(this).submit(function(){
frame = $('#fileUpload').load(function(){
setContent(frame.contents().find('body').html());
frame.unbind('load');
setTimeout(function (){frame.html('');}, 1);
});
});
});
$(where+" form.tableForm tbody").each(function(evt){
var that = this;
var newRow = $(".new",this).html();
$(that).change(function(){
tosave = true;
$("tr",that).each(function(evt){
see = true;
$(":input:not([ type = 'hidden' ] )",this).each(function(){
if(see){
see = $(this).val()=='';
}
});
if(see && $(this).attr("data")=="set"){
$(this).attr("data","");
$(this).remove();
}
if(!see && $(this).attr("data")!="set"){
$(this).attr("data","set");
$("tr",that).removeClass("new");
$(that).append("<tr class=\"new\">"+newRow+"</tr>");
evet();
}
save = true;
that2=this;
$(":input:not([ type = 'hidden' ] )",this).each(function(){
if(save && !$(that2).hasClass("new")){
save = $(this).val()!='';
}
});
if(tosave && !$(that2).hasClass("new")){
tosave = save;
}
});
if(tosave)
//console.log("sendTosave");
saveForm(that);
});
//ZUOFT WIRD GESPEICHERT
function evet(){
$("tr:not(.new)",that).each(function(){
var that2 = this;
$(".btn-del",this).unbind("click").click(function(evt){
$(that2).remove();
saveForm(that);
});
});
}
evet();
});
function saveForm(here,back){
i = 0;
$(":input[ name *= '_wysihtml5_mod' ]",$(here).parents('form')).remove();
//$(":input[ class *= 'select2-focusser' ]",$(here).parents('form')).remove();
$("tbody tr.new",$(here).parents('form')).remove();
$("tbody tr",$(here).parents('form')).each(function(){
$(":input[name]",this).each(function(){
str = $(this).attr("name").replace(/data\[(.*?)\]\[.*?\]\[(.+)\]/g,'data[$1]['+i+'][$2]');
$(this).attr("name",str);
});
i++;
});
load($(here).parents("form").attr("action"),{back:back,data:$(here).parents("form").serialize(), type:'POST'},false);
}
$($(where+" form.tableForm .label.edit").parents('form.tableForm a')).click(function(){saveForm('form.tableForm tbody',$(this).attr('href'));return false;});
//$(where+" form label.has-error").parent(".form-group").addClass("has-error")
} }
function setContent(data,back,tab,backignore){ function event(where) {
alert = data.split('<!-- alert -->')[1].split('<!-- /alert -->')[0]; /* Hotfix Ticket: 215*/
$('#alert').removeClass('old'); $(where + ' img').each(function() {
if( alert.trim().length > 0){ $(this).attr('src', $(this).attr('src') + '?' + (new Date()).getTime());
$('#alert').html(alert); });
}else if(!backignore){
$('#alert').addClass('old'); $("#alert .alert").alert();
$(where + ' textarea').wysihtml5();
$(where + ' select').each(function() {
$(this).select2({allowClear: true});
});
$(where + ' .dropdown-toggle').dropdown();
$(where + " a").tooltip();
;
$(where + " a").each(function(that) {
if ($(this).attr("rel") !== "external" && $(this).attr("ref") !== "eventOff" && !$(this).parents('ul').hasClass("wysihtml5-toolbar") && !$(this).hasClass(".select2-choice") && !$(this).parents('form').hasClass('tableForm'))
$(this).click(function(e) {
stopLoad(e);
load($(this).attr('href'), {}, ($(this).attr('rel') == "tab"));
return false;
});
});
$(where + " form").submit(function(e) {
if (!$(this).hasClass("hide-form") && $(this).attr('enctype') != 'multipart/form-data') {
stopLoad(e);
$(":input[ name *= '_wysihtml5_mod' ]", this).remove();
//stopLoad(e);
if ($(this).attr("back"))
back = window.location.href;
else
back = null;
load($(this).attr("action"), {data: $(this).serialize(), type: $(this).attr("method"), back: back}, ($(this).attr('rel') == "tab"));
return false;
} }
});
if(back){
load(back,{'backignore':true},tab); $(where + " form[ enctype *= 'multipart/form-data' ]").each(function(evt) {
}else if(tab){ stopLoad(evt);
navbar = data.split('<!-- tab -->')[1].split('<!-- /tab -->')[0]; if (!$('#fileUpload').length)
$('#tab').html(navbar); $('body').append('<iframe id="fileUpload" name="fileUpload" style="display:none" />');
event("#tab"); $(this).attr('target', 'fileUpload');
}else{ $(":input[ name *= '_wysihtml5_mod' ]", this).remove();
navbar = data.split('<!-- navbar -->')[1].split('<!-- /navbar -->')[0]; $(this).submit(function() {
$('#navbar').html(navbar); frame = $('#fileUpload').load(function() {
event("#navbar"); setContent(frame.contents().find('body').html());
frame.unbind('load');
container = data.split('<!-- container -->')[1].split('<!-- /container -->')[0]; setTimeout(function() {
$('#container').html(container); frame.html('');
event("#container"); }, 1);
});
barright = data.split('<!-- barright -->')[1].split('<!-- /barright -->')[0]; });
$('#barright').html(barright); });
event("#barright");
$(where + " form.tableForm tbody").each(function(evt) {
barleft = data.split('<!-- barleft -->')[1].split('<!-- /barleft -->')[0]; var that = this;
$('#barleft').html(barleft); var newRow = $(".new", this).html();
event("#barleft"); $(that).change(function(e) {
} stopLoad(e);
if(!back){ tosave = true;
navbar = data.split('<!-- extraScript -->')[1].split('<!-- /extraScript -->')[0]; $("tr", that).each(function(evt) {
eval($(navbar).html()); see = true;
$(":input:not([ type = 'hidden' ] )", this).each(function() {
if (see) {
see = $(this).val() == '';
}
});
if (see && $(this).attr("data") == "set") {
$(this).attr("data", "");
$(this).remove();
}
if (!see && $(this).attr("data") != "set") {
$(this).attr("data", "set");
$("tr", that).removeClass("new");
$(that).append("<tr class=\"new\">" + newRow + "</tr>");
evet();
}
save = true;
that2 = this;
$(":input:not([ type = 'hidden' ] )", this).each(function() {
if (save && !$(that2).hasClass("new")) {
save = $(this).val() != '';
}
});
if (tosave && !$(that2).hasClass("new")) {
tosave = save;
}
});
if (tosave)
//console.log("sendTosave");
saveForm(that);
});
//ZUOFT WIRD GESPEICHERT
function evet() {
$("tr:not(.new)", that).each(function() {
var that2 = this;
$(".btn-del", this).unbind("click").click(function(evt) {
$(that2).remove();
saveForm(that);
});
});
} }
evet();
});
function saveForm(here, back) {
i = 0;
$(":input[ name *= '_wysihtml5_mod' ]", $(here).parents('form')).remove();
//$(":input[ class *= 'select2-focusser' ]",$(here).parents('form')).remove();
$("tbody tr.new", $(here).parents('form')).remove();
$("tbody tr", $(here).parents('form')).each(function() {
$(":input[name]", this).each(function() {
str = $(this).attr("name").replace(/data\[(.*?)\]\[.*?\]\[(.+)\]/g, 'data[$1][' + i + '][$2]');
$(this).attr("name", str);
});
i++;
});
load($(here).parents("form").attr("action"), {back: back, data: $(here).parents("form").serialize(), type: 'POST'}, false);
} }
function setContentError(data,back,tab){
alert = "<div class=\"alert alert-danger\">"+data.statusText+
"<button type=\"button\" class=\"close\" data-dismiss=\"alert\">&times;</button>" $($(where + " form.tableForm .label.edit").parents('form.tableForm a')).click(function() {
+ "</div>"; saveForm('form.tableForm tbody', $(this).attr('href'));
$('#alert').removeClass('old'); return false;
});
//$(where+" form label.has-error").parent(".form-group").addClass("has-error")
}
function setContent(data, back, tab, backignore) {
alert = data.split('<!-- alert -->')[1].split('<!-- /alert -->')[0];
$('#alert').removeClass('old');
if (alert.trim().length > 0) {
$('#alert').html(alert); $('#alert').html(alert);
event("#alert"); } else if (!backignore) {
$('#container').html(data.responseText); $('#alert').addClass('old');
event("#container");
} }
function load(pageurl,conf,tab){
if (back) {
load(back, {'backignore': true}, tab);
} else if (tab) {
navbar = data.split('<!-- tab -->')[1].split('<!-- /tab -->')[0];
$('#tab').html(navbar);
event("#tab");
} else {
navbar = data.split('<!-- navbar -->')[1].split('<!-- /navbar -->')[0];
$('#navbar').html(navbar);
event("#navbar");
container = data.split('<!-- container -->')[1].split('<!-- /container -->')[0];
$('#container').html(container);
event("#container");
barright = data.split('<!-- barright -->')[1].split('<!-- /barright -->')[0];
$('#barright').html(barright);
event("#barright");
barleft = data.split('<!-- barleft -->')[1].split('<!-- /barleft -->')[0];
$('#barleft').html(barleft);
event("#barleft");
}
if (!back) {
navbar = data.split('<!-- extraScript -->')[1].split('<!-- /extraScript -->')[0];
eval($(navbar).html());
}
}
function setContentError(data, back, tab) {
alert = "<div class=\"alert alert-danger\">" + data.statusText +
"<button type=\"button\" class=\"close\" data-dismiss=\"alert\">&times;</button>"
+ "</div>";
$('#alert').removeClass('old');
$('#alert').html(alert);
event("#alert");
$('#container').html(data.responseText);
event("#container");
}
function load(pageurl, conf, tab) {
data = {}; data = {};
typemethode = "GET"; typemethode = "GET";
back = false; back = false;
backignore = false; backignore = false;
history = true; history = true;
if(conf['data']) if (conf['data'])
data = conf['data']; data = conf['data'];
if(conf['type']) if (conf['type'])
typemethode = conf['type']; typemethode = conf['type'];
if(conf['back'] && conf['back'].indexOf("logout")== -1 && conf['back'].indexOf("login")== -1 ) if (conf['back'] && conf['back'].indexOf("logout") == -1 && conf['back'].indexOf("login") == -1)
back = conf['back']; back = conf['back'];
if(conf['backignore']) if (conf['backignore'])
backignore = conf['backignore']; backignore = conf['backignore'];
if(conf['history']) if (conf['history'])
history = conf['history']; history = conf['history'];
//e.preventDefault(); //e.preventDefault();
/* /*
if uncomment the above line, html5 nonsupported browers won't change the url but will display the ajax content; if uncomment the above line, html5 nonsupported browers won't change the url but will display the ajax content;
if commented, html5 nonsupported browers will reload the page to the specified link. if commented, html5 nonsupported browers will reload the page to the specified link.
*/ */
$.ajax({url:pageurl,data:data,type:typemethode,success:function(data){setContent(data,back,tab,backignore);} ,error:function(data){setContentError(data,back,tab);}}); $.ajax({url: pageurl, data: data, type: typemethode, success: function(data) {
if(history && pageurl!=window.location){ setContent(data, back, tab, backignore);
window.history.pushState({path:pageurl},'',pageurl); }, error: function(data) {
setContentError(data, back, tab);
}});
if (history && pageurl != window.location) {
window.history.pushState({path: pageurl}, '', pageurl);
} }
}; }
;
event(""); event("");
global_load = load; global_load = load;
}); });