Created
May 8, 2013 13:48
-
-
Save DavertMik/5540534 to your computer and use it in GitHub Desktop.
kango.main.js
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
function Mailican() { | |
var self = this; | |
kango.ui.browserButton.setPopup({url:'popup.html', width: 400, height: 400 }); | |
kango.ui.browserButton.addEventListener(kango.ui.browserButton.event.COMMAND, function(){self._onCommand();}); | |
} | |
Mailican.prototype = { | |
_onCommand: function() { | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment