Skip to content

Instantly share code, notes, and snippets.

@geoffreymcgill
Created August 12, 2017 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geoffreymcgill/e33cc309fc464edacf761d743a66db4f to your computer and use it in GitHub Desktop.
Save geoffreymcgill/e33cc309fc464edacf761d743a66db4f to your computer and use it in GitHub Desktop.
Bridge.Class.define("Demo.App", {
statics: {
$config: {
init: function () {
Bridge.ready(this.main);
}
},
main: function () {
// Simple alert() to confirm it's working
window.alert("Success");
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment