1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 09:49:30 +02:00

Replace iframe with Ajax page loading :) :)

This commit is contained in:
Afterster 2014-08-08 01:36:07 +02:00
parent 1ed9fde59f
commit 49cd42562b
47 changed files with 607 additions and 574 deletions

View file

@ -0,0 +1,83 @@
function loadContentData(data, status, jqXHR)
{
var $mainContent = $("#content");
var $pageWrap = $("#guts");
var $response = $(data);
$mainContent.empty().append($response.find("#guts"));
$mainContent.fadeIn(200, function() {
$pageWrap.animate({
height: $mainContent.height() + "px"
});
});
$("a[rel^='prettyPhoto']").prettyPhoto({social_tools:false});
}
function loadContentPage(url)
{
var $mainContent = $("#content");
$mainContent
.find("#guts")
.fadeOut(200, function() {
$.get(url, function (data, status, jqXHR) {
loadContentData(data, status, jqXHR);
}, 'html');
});
}
$(function() {
var newHash = "";
$("body").delegate("a", "click", function() {
var link = $(this).attr("href");
if (link != "" && link.indexOf("javascript:") != 0 && link != "#" && link != undefined && $(this).attr("onclick") == undefined && $(this).attr("rel") != "nohtml" && $(this).attr("target") != "_blank") {
if ($(this).attr("rel") != "prettyPhoto") {
var href = $(this).attr("href");
window.location.hash = href.substring(jsWebPath.length + 1);
return false;
} else {
window.location.hash = $(this).attr("rel");
return false;
}
}
});
$("body").delegate("form", "submit", function(e) {
// We do not support ajax post with files
var $file = $(this).find("input[type=file]");
if (!$file || !$file.val() || $file.val() == "") {
var postData = $(this).serializeArray();
var formURL = $(this).attr("action");
$.ajax(
{
url : formURL,
type: "POST",
data : postData,
success:function(data, status, jqXHR)
{
loadContentData(data, status, jqXHR);
},
error: function(jqXHR, status, errorThrown)
{
// Display error here?
}
});
e.preventDefault();
}
});
$(window).bind('hashchange', function(){
newHash = window.location.hash.substring(1);
if (newHash && newHash.indexOf("prettyPhoto") != 0) {
loadContentPage(jsWebPath + '/' + newHash);
};
return false;
});
$(window).trigger('hashchange');
});