mirror of
https://github.com/zulip/zulip.git
synced 2026-07-15 21:03:26 +08:00
13 lines
222 B
JavaScript
13 lines
222 B
JavaScript
var common = require("js/common.js");
|
|
|
|
set_global('$', function (f) {
|
|
if (f === '#home') {
|
|
return [{ focus: function () {} }];
|
|
}
|
|
f();
|
|
});
|
|
|
|
(function test_basics() {
|
|
common.autofocus('#home');
|
|
}());
|