Created
October 10, 2011 17:23
-
-
Save pthrasher/1275853 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; | |
| // ... | |
| _window_focus: __bind(function(e) | |
| { | |
| Ti.API.info('window_focus - enter'); | |
| if (this.performedInitialFocus == false) | |
| { | |
| this.performedInitialFocus = true; | |
| this._nearbyButton_click(); | |
| } else { | |
| this.mapView.selectAnnotation(this.searchLocation); | |
| } | |
| Ti.API.info('window_focus - exit'); | |
| }, StoresWindow), | |
| // ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment