-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from Brainfuse/master
Fixes ISSUE 307 Nav bar showing on the nexus 7, 7 inch when the keyboard is shown
- Loading branch information
Showing
6 changed files
with
282 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/java/com/googlecode/mgwt/ui/client/util/OrientationHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.googlecode.mgwt.ui.client.util; | ||
|
||
import com.google.web.bindery.event.shared.EventBus; | ||
import com.googlecode.mgwt.dom.client.event.orientation.OrientationChangeEvent.ORIENTATION; | ||
|
||
public interface OrientationHandler { | ||
|
||
public abstract ORIENTATION getOrientation(); | ||
|
||
void maybeSetupOrientation(EventBus manager); | ||
|
||
} |
Oops, something went wrong.