This commit is contained in:
Peter Cottle 2013-01-08 15:56:57 -08:00
parent 9d772c1528
commit 1f6189943a
2 changed files with 15 additions and 3 deletions

View file

@ -204,12 +204,16 @@ var Sandbox = Backbone.View.extend({
iosAlert: function(command, deferred) {
var whenClosed = Q.defer();
/*
var view = new Views.iOSKeyboardView({
deferred: whenClosed
});
whenClosed.promise.then(function() {
command.finishWith(deferred);
});
});*/
// wow even this fails!
alert("Can't bring up the keyboard on iOS, try visiting on desktop! :D");
whenClosed.resolve();
},
delay: function(command, deferred) {