mirror of https://github.com/zulip/zulip.git
docs: Change extensions from .js to .ts for some filenames.
Since we are migrating from JavaScript to TypeScript some files in the documentation are still with their old extension. This commit changes those file extensions.
This commit is contained in:
parent
dbe930394f
commit
9e4529c48b
|
@ -200,10 +200,10 @@ needs to be accessible from one of the entry points defined either in
|
|||
|
||||
- If you plan to only use the file within the app proper, and not on the login
|
||||
page or other standalone pages, put it in the `app` bundle by importing it
|
||||
in `web/src/bundles/app.js`.
|
||||
in `web/src/bundles/app.ts`.
|
||||
- If it needs to be available both in the app and all
|
||||
logged-out/portico pages, import it to
|
||||
`web/src/bundles/common.js` which itself is imported to the
|
||||
`web/src/bundles/common.ts` which itself is imported to the
|
||||
`app` and `common` bundles.
|
||||
- If it's just used on a single standalone page which is only used in
|
||||
a development environment (e.g. `/devlogin`) create a new entry
|
||||
|
|
|
@ -191,7 +191,7 @@ might use). In development, this means displaying a highly visible
|
|||
overlay over the message view area, to make exceptions in testing a
|
||||
new feature hard to miss.
|
||||
|
||||
- Blueslip is implemented in `web/src/blueslip.js`.
|
||||
- Blueslip is implemented in `web/src/blueslip.ts`.
|
||||
- In order to capture essentially any error occurring in the browser,
|
||||
Blueslip listens for the `error` event on `window`, and has methods
|
||||
for being manually triggered by Zulip JavaScript code for warnings
|
||||
|
|
|
@ -115,7 +115,7 @@ The main goal is then to triage which events should lead to
|
|||
display changes.
|
||||
|
||||
The web app client maintains a list of incoming "typists" using
|
||||
code in `web/src/typing_data.js`. The API here has functions
|
||||
code in `web/src/typing_data.ts`. The API here has functions
|
||||
like the following:
|
||||
|
||||
- `add_typist`
|
||||
|
|
|
@ -239,7 +239,7 @@ $("#foo").html(
|
|||
|
||||
The only HTML tags allowed directly in translated strings are the
|
||||
simple HTML tags enumerated in `default_html_elements`
|
||||
(`web/src/i18n.js`) with no attributes. This helps to avoid
|
||||
(`web/src/i18n.ts`) with no attributes. This helps to avoid
|
||||
exposing HTML details to translators. If you need to include more
|
||||
complex markup such as a link, you can define a custom HTML tag
|
||||
locally to the translation:
|
||||
|
|
|
@ -20,7 +20,7 @@ const people = zrequire("people");
|
|||
const stream_data = zrequire("stream_data");
|
||||
const util = zrequire("util");
|
||||
|
||||
// Let's start with testing a function from util.js.
|
||||
// Let's start with testing a function from util.ts.
|
||||
//
|
||||
// The most basic unit tests load up code, call functions,
|
||||
// and assert truths:
|
||||
|
|
|
@ -26,7 +26,7 @@ require("../src/templates");
|
|||
|
||||
// All of our other tests stub out i18n activity;
|
||||
// here we do a quick sanity check on the engine itself.
|
||||
// `i18n.js` initializes FormatJS and is imported by
|
||||
// `i18n.ts` initializes FormatJS and is imported by
|
||||
// `templates.js`.
|
||||
unmock_module("../src/i18n");
|
||||
const {$t, $t_html, get_language_name, get_language_list_columns, initialize} = zrequire("i18n");
|
||||
|
|
Loading…
Reference in New Issue