Coupon type template framgment may define a couponInputFormSetup JS function

This commit is contained in:
Franck Allimant
2014-06-10 16:01:38 +02:00
parent a1ba63d5d5
commit 8f5369a1b8

View File

@@ -235,6 +235,14 @@ $(function($){
} }
}).done(function(data) { }).done(function(data) {
inputsDiv.html(data); inputsDiv.html(data);
// Invoke coupon setup funtion, if any
try {
couponInputFormSetup();
}
catch (ex) {
// Ignore the error
}
}); });
}; };