This commit is contained in:
Nathan Coad
2016-06-03 10:48:51 +10:00
parent 4f81f56c75
commit 4e4fda63f1

View File

@@ -2,6 +2,6 @@
* Special Effects AJAX framework command.
*/
Drupal.ajax.prototype.commands.bookingEmailIDs = function(ajax, response, status) {
var initValues = $.parseJSON($('input:hidden#booking_email_default_ids').val());
alert(initValues.first()) ; // this will be executed after the ajax call
var initValues = $('input:hidden#booking_email_default_ids').val());
alert(initValues) ; // this will be executed after the ajax call
}