Files
Signal-Desktop/js/register.js
lilia de3816b094 Get standalone registration working in development
Whisper.events.trigger('openStandalone') to open the standalone
registration view.

// FREEBIE
2017-09-14 16:53:39 -07:00

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')});
});
})();