js: Convert static/js/portico/signup.js to ES6 module.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2021-02-10 08:13:53 -08:00 committed by Tim Abbott
parent 89cd97ac05
commit 5bee572332
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,3 @@
"use strict";
$(() => {
// NB: this file is included on multiple pages. In each context,
// some of the jQuery selectors below will return empty lists.
@ -212,3 +210,4 @@ $(() => {
this.parentNode.submit();
});
});
export {};