mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-07 02:11:26 +02:00
bug 2975 fixed: remove useless "," at the end of arrays, because it breaks Internet Explorer 7 :-/
git-svn-id: http://piwigo.org/svn/branches/2.5@24975 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -12,7 +12,7 @@ jQuery(document).ready(function(){
|
||||
jQuery("#notManualOrder").hide();
|
||||
jQuery("#formAutoOrder").hide();
|
||||
jQuery("#formCreateAlbum").hide();
|
||||
},
|
||||
}
|
||||
});
|
||||
|
||||
jQuery("#categoryOrdering").submit(function(){
|
||||
|
||||
@@ -6,7 +6,7 @@ jQuery(document).ready(function(){
|
||||
{
|
||||
recursive: true,
|
||||
fullname: true,
|
||||
format: "json",
|
||||
format: "json"
|
||||
},
|
||||
function(data) {
|
||||
jQuery.each(
|
||||
@@ -44,7 +44,7 @@ jQuery(document).ready(function(){
|
||||
url: "ws.php?format=json&method=pwg.categories.add",
|
||||
data: {
|
||||
parent: jQuery("select[name=category_parent] option:selected").val(),
|
||||
name: jQuery("input[name=category_name]").val(),
|
||||
name: jQuery("input[name=category_name]").val()
|
||||
},
|
||||
beforeSend: function() {
|
||||
jQuery("#albumCreationLoading").show();
|
||||
|
||||
@@ -200,7 +200,7 @@ var sizeLimit = Math.round({$upload_max_filesize} / 1024); /* in KBytes */
|
||||
'level' : jQuery("select[name=level] option:selected").val(),
|
||||
'upload_id' : upload_id,
|
||||
'session_id' : session_id,
|
||||
'pwg_token' : pwg_token,
|
||||
'pwg_token' : pwg_token
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user