This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
zulip
mirror of
https://github.com/zulip/zulip.git
Watch
1
Star
0
Fork
You've already forked zulip
0
Code
Issues
Projects
Releases
Wiki
Activity
abff97df39
zulip
/
static
/
js
/
portico
/
confirm-preregistrationuser.js
6 lines
67 B
JavaScript
Raw
Normal View
History
Unescape
Escape
js: Add "use strict" directive to CommonJS files. ES and TypeScript modules are strict by default and don’t need this directive. ESLint will remind us to add it to new CommonJS files and remove it from ES and TypeScript modules. Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-08-01 03:43:15 +02:00
"use strict"
;
eslint: Enable prefer-arrow-callback. Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-07-02 01:45:54 +02:00
$
(
(
)
=>
{
js: Replace deprecated jQuery event trigger shorthand. Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-07-20 21:24:26 +02:00
$
(
"#register"
)
.
trigger
(
"submit"
)
;
confirm_preregistrationuser: Uninline script. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2019-09-14 01:26:57 +02:00
}
)
;