
Whisper.events.trigger('openStandalone') to open the standalone registration view. // FREEBIE
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
;(function() {
|
|
'use strict';
|
|
|
|
extension.windows.getBackground(function(bg) {
|
|
var view = new bg.StandaloneRegistrationView({el: $('body')});
|
|
});
|
|
|
|
})();
|