Fixes Issue #4

This commit is contained in:
Peter Cottle 2013-02-16 14:53:35 -08:00
parent a97e575f63
commit 36d3ea31fc
5 changed files with 7 additions and 6 deletions

View file

@ -88,13 +88,14 @@ var init = function() {
});
*/
/*
eventBaton.stealBaton('windowSizeCheck', function(size) {
if (size.w < Constants.VIEWPORT.minWidth ||
size.h < Constants.VIEWPORT.minHeight) {
var Views = require('../views');
var view = new Views.WindowSizeAlertWindow();
}
});
});*/
// the default action on window focus and document click is to just focus the text area
eventBaton.stealBaton('windowFocus', focusTextArea);