This commit is contained in:
eddyverbruggen 2017-02-18 21:23:03 +01:00
parent d81936a08a
commit 8d4a3d646c

View File

@ -24,9 +24,9 @@ var toastProxy = {
successCallback({
event: "touch",
message: options[0].message,
data: options[0].data,
data: options[0].data
});
}
};
toast.ondismissed = function (event) {
toastProxy.lastDisplayedNotification = null;
@ -35,12 +35,12 @@ var toastProxy = {
message: options[0].message,
data: options[0].data
});
}
};
toast.onfailed = function(err) {
toastProxy.lastDisplayedNotification = null;
errorCallback(err);
}
};
notifications.ToastNotificationManager.createToastNotifier().show(toast);
},
@ -51,6 +51,6 @@ var toastProxy = {
this.lastDisplayedNotification = null;
}
}
}
};
cordova.commandProxy.add("Toast", toastProxy);