Make sure the alert buttonLabel is a string
diff --git a/www/notification.js b/www/notification.js
index 4db8f0f..751f4ce 100644
--- a/www/notification.js
+++ b/www/notification.js
@@ -39,7 +39,7 @@
     alert: function(message, completeCallback, title, buttonLabel) {
         var _message = (typeof message === "string" ? message : JSON.stringify(message));
         var _title = (typeof title === "string" ? title : "Alert");
-        var _buttonLabel = (buttonLabel || "OK");
+        var _buttonLabel = (typeof buttonLabel === "string" ? buttonLabel : "OK");
         exec(completeCallback, null, "Notification", "alert", [_message, _title, _buttonLabel]);
     },