Created
July 31, 2008 20:02
-
-
Save erichocean/3515 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
| popup: function(anchorView, triggerEvent) { | |
| // this will bypass the normal observer machinery, calling the private | |
| // _show method ourselves. To avoid triggering _show twice, we patch up | |
| // the internal _isVisible property. | |
| this._isVisible = true ; | |
| this._show(anchorView, triggerEvent) ; | |
| this.set('isVisible', true); | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment