PouchDB: fixed alert function override

This commit is contained in:
gstamac
2013-08-23 13:58:40 +02:00
parent 202a9918e2
commit 822274f76e
+1 -1
View File
@@ -2,7 +2,7 @@
declare var $: any;
function alert(thing: any) {
window.alert = function(thing?: string) {
$('body').append('<div>' + thing + '</div>');
}