// improvement about admin-products.js enable/disable save buttons
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12105 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
+15
-11
@@ -291,17 +291,13 @@ function getManufacturers()
|
||||
|
||||
function disableSave()
|
||||
{
|
||||
if ($('#product-tab-content-Associations').hasClass('not-loaded'))
|
||||
{
|
||||
$('#desc-product-save').hide();
|
||||
$('#desc-product-save-and-stay').hide();
|
||||
|
||||
$('#product-tab-content-Associations').bind('loaded', function()
|
||||
{
|
||||
$('#desc-product-save').show();
|
||||
$('#desc-product-save-and-stay').show();
|
||||
});
|
||||
}
|
||||
}
|
||||
function enableSave()
|
||||
{
|
||||
$('#desc-product-save').show();
|
||||
$('#desc-product-save-and-stay').show();
|
||||
}
|
||||
|
||||
/* function autocomplete */
|
||||
@@ -310,5 +306,13 @@ urlToCall = null;
|
||||
$(document).ready(function() {
|
||||
updateCurrentText();
|
||||
updateFriendlyURL();
|
||||
disableSave();
|
||||
});
|
||||
|
||||
// disable save if Associations tab is not loaded
|
||||
if ($('#product-tab-content-Associations').hasClass('not-loaded'))
|
||||
disableSave();
|
||||
|
||||
$('#product-tab-content-Associations').bind('loaded', function()
|
||||
{
|
||||
enableSave();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user