Release 9.1.0
This commit is contained in:
parent
fb704fdf87
commit
6b1845ff39
@ -1,6 +1,6 @@
|
||||
# Changelog
|
||||
|
||||
## 9.0.1 (Unreleased)
|
||||
## 9.1.0 (2022-04-02)
|
||||
|
||||
- Updated translations: af, ar, es, eu, fr, gl, he, lt
|
||||
- Increased stanza timeout from 10 to 20 seconds
|
||||
|
@ -2,7 +2,7 @@
|
||||
*
|
||||
* An XMPP chat client that runs in the browser.
|
||||
*
|
||||
* Version: 9.0.0
|
||||
* Version: 9.1.0
|
||||
*
|
||||
* Copyright: JC Brand 2013-2018
|
||||
* Except for 3rd party dependencies.
|
||||
|
2
Makefile
2
Makefile
@ -67,7 +67,7 @@ serve_bg: node_modules
|
||||
dist/converse-no-dependencies.js: src webpack/webpack.common.js webpack/webpack.nodeps.js @converse/headless node_modules
|
||||
npm run nodeps
|
||||
|
||||
GETTEXT = $(XGETTEXT) --from-code=UTF-8 --language=JavaScript --keyword=__ --keyword=___ --keyword=i18n_ --force-po --output=src/i18n/converse.pot --package-name=Converse.js --copyright-holder="Jan-Carel Brand" --package-version=9.0.0 dist/converse-no-dependencies.js -c
|
||||
GETTEXT = $(XGETTEXT) --from-code=UTF-8 --language=JavaScript --keyword=__ --keyword=___ --keyword=i18n_ --force-po --output=src/i18n/converse.pot --package-name=Converse.js --copyright-holder="Jan-Carel Brand" --package-version=9.1.0 dist/converse-no-dependencies.js -c
|
||||
|
||||
src/i18n/converse.pot: dist/converse-no-dependencies.js
|
||||
$(GETTEXT) 2>&1 > /dev/null; exit $$?;
|
||||
|
@ -46,7 +46,11 @@ In overlay mode, Converse appears overlayed chats on top of the website.
|
||||
|
||||
In fullpage mode, Converse behaves like a single-page app that covers the whole browser viewport.
|
||||
|
||||
![Screenshot of Converse in fullpage mode](https://conversejs.org/screenshots/Converse-fullscreen.png)
|
||||
![Screenshot of Converse 9.0.0 in fullpage mode](https://conversejs.org/screenshots/Converse-fullscreen.png)
|
||||
|
||||
### Dark mode
|
||||
|
||||
![Screenshot of Converse 9.1.0 with a dark theme](https://conversejs.org/screenshots/Converse-Dracula-Theme.png)
|
||||
|
||||
### Embedded
|
||||
|
||||
|
14
RELEASE.md
14
RELEASE.md
@ -2,18 +2,18 @@
|
||||
|
||||
1. Check that weblate translations are all merged in
|
||||
2. Run `make check` to check that all tests pass.
|
||||
3. Run `make release VERSION=9.0.1`
|
||||
3. Run `make release VERSION=9.1.0`
|
||||
4. Do a `git diff` to check if things look sane.
|
||||
5. Do a quick manual test with the `dist` files (via `index.html`)
|
||||
6. `git commit -am "Release 9.0.1"`
|
||||
7. `git tag -s v9.0.1 -m "Release 9.0.1"`
|
||||
8. Run `git push && git push origin v9.0.1`
|
||||
6. `git commit -am "Release 9.1.0"`
|
||||
7. `git tag -s v9.1.0 -m "Release 9.1.0"`
|
||||
8. Run `git push && git push origin v9.1.0`
|
||||
9. Update https://conversejs.org
|
||||
* `cd /home/conversejs/converse.js`
|
||||
* `git clone --branch v9.0.1 git@github.com:conversejs/converse.js.git 9.0.1`
|
||||
* `cd 9.0.1 && nvm install && ASSET_PATH=https://cdn.conversejs.org/9.0.1/dist/ make dist && make doc`
|
||||
* `git clone --branch v9.1.0 git@github.com:conversejs/converse.js.git 9.1.0`
|
||||
* `cd 9.1.0 && nvm install && ASSET_PATH=https://cdn.conversejs.org/9.1.0/dist/ make dist && make doc`
|
||||
* `cd .. && nvm install && git pull && ASSET_PATH=https://cdn.conversejs.org/dist/ make dist && make doc`
|
||||
10. Update release page on Github
|
||||
11. Run `npm publish && cd src/headless/ && npm publish`
|
||||
12. Update the repository on weblate
|
||||
13. Decide on next release number and run `make postrelease VERSION=8.0.2`
|
||||
13. Decide on next release number and run `make postrelease VERSION=9.1.1`
|
||||
|
@ -48,9 +48,9 @@ copyright = u'2018, JC Brand'
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '9.0.0'
|
||||
version = '9.1.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '9.0.0'
|
||||
release = '9.1.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -55,16 +55,16 @@ might break when a new backwards-incompatible version of Converse is released.
|
||||
|
||||
To load a specific version of Converse you can put the version in the URL:
|
||||
|
||||
* https://cdn.conversejs.org/9.0.0/dist/converse.min.js
|
||||
* https://cdn.conversejs.org/9.0.0/dist/converse.min.css
|
||||
* https://cdn.conversejs.org/9.1.0/dist/converse.min.js
|
||||
* https://cdn.conversejs.org/9.1.0/dist/converse.min.css
|
||||
|
||||
You can include these two URLs inside the *<head>* element of your website
|
||||
via the *script* and *link* tags:
|
||||
|
||||
.. code-block:: html
|
||||
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.conversejs.org/9.0.0/dist/converse.min.css">
|
||||
<script src="https://cdn.conversejs.org/9.0.0/dist/converse.min.js" charset="utf-8"></script>
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.conversejs.org/9.1.0/dist/converse.min.css">
|
||||
<script src="https://cdn.conversejs.org/9.1.0/dist/converse.min.js" charset="utf-8"></script>
|
||||
|
||||
|
||||
Option 2: Download the builds from Github
|
||||
|
@ -11,17 +11,17 @@
|
||||
|
||||
<!-- These files are NOT needed when using converse.js in your own project. -->
|
||||
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico"/>
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.0.0/css/font-awesome.min.css" />
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.0.0/css/website.min.css" />
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.1.0/css/font-awesome.min.css" />
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.1.0/css/website.min.css" />
|
||||
<noscript><p><img src="//stats.opkode.com/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
|
||||
<script type="text/javascript" src="/src/website.js"></script>
|
||||
<script type="text/javascript" src="analytics.js"></script>
|
||||
<!-- *********************************************************************** -->
|
||||
|
||||
<![if gte IE 11]>
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.0.0/css/converse.min.css" />
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.1.0/css/converse.min.css" />
|
||||
<script src="https://cdn.conversejs.org/3rdparty/libsignal-protocol.min.js"></script>
|
||||
<script src="https://cdn.conversejs.org/9.0.0/dist/converse.min.js"></script>
|
||||
<script src="https://cdn.conversejs.org/9.1.0/dist/converse.min.js"></script>
|
||||
<![endif]>
|
||||
</head>
|
||||
|
||||
@ -66,7 +66,7 @@
|
||||
<table id="jslicense-labels1" style="width: 100%">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://cdn.conversejs.org/9.0.0/dist/converse.min.js">converse.min.js</a>
|
||||
<a href="https://cdn.conversejs.org/9.1.0/dist/converse.min.js">converse.min.js</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://www.mozilla.org/en-US/MPL/2.0/">MPL-2.0</a>
|
||||
|
@ -2,7 +2,7 @@
|
||||
"short_name": "Converse",
|
||||
"name": "Converse Chat",
|
||||
"description": "Messaging Freedom",
|
||||
"version": "9.0.0",
|
||||
"version": "9.1.0",
|
||||
"categories": ["social"],
|
||||
"icons": [
|
||||
{
|
||||
|
@ -18,9 +18,9 @@
|
||||
<script type="text/javascript" src="analytics.js"></script>
|
||||
<!-- *********************************************************************** -->
|
||||
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.0.0/dist/converse.min.css" />
|
||||
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/9.1.0/dist/converse.min.css" />
|
||||
<script src="https://cdn.conversejs.org/3rdparty/libsignal-protocol.min.js"></script>
|
||||
<script src="https://cdn.conversejs.org/9.0.0/dist/converse.min.js"></script>
|
||||
<script src="https://cdn.conversejs.org/9.1.0/dist/converse.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body id="page-top" data-spy="scroll" class="converse-website">
|
||||
|
8
package-lock.json
generated
8
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "converse.js",
|
||||
"version": "9.0.0",
|
||||
"version": "9.1.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "converse.js",
|
||||
"version": "9.0.0",
|
||||
"version": "9.1.0",
|
||||
"license": "MPL-2.0",
|
||||
"dependencies": {
|
||||
"@converse/skeletor": "conversejs/skeletor#c7e76b023337a8ac201c74507f7a1209de1c6d18",
|
||||
@ -16995,7 +16995,7 @@
|
||||
},
|
||||
"src/headless": {
|
||||
"name": "@converse/headless",
|
||||
"version": "9.0.0",
|
||||
"version": "9.1.0",
|
||||
"dev": true,
|
||||
"license": "MPL-2.0",
|
||||
"dependencies": {
|
||||
@ -18296,6 +18296,7 @@
|
||||
},
|
||||
"@converse/skeletor": {
|
||||
"version": "git+ssh://git@github.com/conversejs/skeletor.git#c7e76b023337a8ac201c74507f7a1209de1c6d18",
|
||||
"integrity": "sha512-2g+6XxFUorhlHncfkBWB8+26+8Izl2kJYf+1uk/Umb53/ltvCgtCJcQuAECmKXC/y99yCjNWot+qhA+tQK9sWQ==",
|
||||
"from": "@converse/skeletor@conversejs/skeletor#c7e76b023337a8ac201c74507f7a1209de1c6d18",
|
||||
"requires": {
|
||||
"lit-html": "^2.0.0-rc.2",
|
||||
@ -25060,6 +25061,7 @@
|
||||
},
|
||||
"localforage-getitems": {
|
||||
"version": "git+ssh://git@github.com/conversejs/localForage-getItems.git#de039970de16a9d3b54cdaa816aed5adaefb80c9",
|
||||
"integrity": "sha512-fPxYV2vJFx2onqHfL+En0bTesjawTmn1v/peYf/0gaYL7uhx5nP9czVHNUYAXoKL9kKplVH8lZo4LRrE2MK23w==",
|
||||
"from": "localforage-getitems@conversejs/localForage-getItems#de039970de16a9d3b54cdaa816aed5adaefb80c9",
|
||||
"requires": {
|
||||
"localforage": ">=1.4.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "converse.js",
|
||||
"version": "9.0.0",
|
||||
"version": "9.1.0",
|
||||
"description": "Browser based XMPP chat client",
|
||||
"browser": "dist/converse.js",
|
||||
"module": "src/converse.js",
|
||||
|
@ -80,7 +80,7 @@ Strophe.addNamespace('VCARDUPDATE', 'vcard-temp:x:update');
|
||||
Strophe.addNamespace('XFORM', 'jabber:x:data');
|
||||
Strophe.addNamespace('XHTML', 'http://www.w3.org/1999/xhtml');
|
||||
|
||||
_converse.VERSION_NAME = "v9.0.0";
|
||||
_converse.VERSION_NAME = "v9.1.0";
|
||||
|
||||
Object.assign(_converse, Events);
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@converse/headless",
|
||||
"version": "9.0.0",
|
||||
"version": "9.1.0",
|
||||
"description": "Converse.js Headless build",
|
||||
"author": "cmrd Senya <senya@riseup.net>",
|
||||
"homepage": "https://conversejs.org",
|
||||
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* @description
|
||||
* Converse.js plugin which adds views for bookmarks specified in XEP-0048.
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import "@converse/headless/plugins/muc/index.js";
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import { api, converse } from '@converse/headless/core';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import ChatBox from './model.js';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import "../emoji/index.js";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-emoji
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import { ASCII_REPLACE_REGEX, CODEPOINTS_REGEX } from './regexes.js';
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-headlines
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @description XEP-0045 Multi-User Chat Views
|
||||
*/
|
||||
import { _converse, api, converse } from "@converse/headless/core";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @description XEP-0313 Message Archive Management
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import '../disco/index.js';
|
||||
|
@ -2,7 +2,7 @@
|
||||
* @description
|
||||
* Converse.js plugin which add support for application-level pings
|
||||
* as specified in XEP-0199 XMPP Ping.
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import ping_api from './api.js';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
* @description This is the form utilities module.
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
* @description Pure functions to help functionally parse messages.
|
||||
* @todo Other parsing helpers can be made more abstract and placed here.
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module i18n
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
* @description This is the internationalization module
|
||||
*/
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @description Converse.js plugin which adds views for XEP-0048 bookmarks
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import '@converse/headless/plugins/muc/index.js';
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-chatboxviews
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import './view.js';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import '../chatboxviews/index.js';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import "shared/components/brand-heading.js";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-dragresize
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import './components/dragresize.js';
|
||||
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* @module converse-fullscreen
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
*/
|
||||
import "@converse/headless/plugins/muc/index.js";
|
||||
import "plugins/chatview/index.js";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-headlines-view
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import '../chatview/index.js';
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-minimize
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import './view.js';
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-notification
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import { _converse, api, converse } from '@converse/headless/core';
|
||||
|
@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @module converse-oauth
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import { Collection } from "@converse/skeletor/src/collection";
|
||||
|
@ -3,7 +3,7 @@
|
||||
* @description
|
||||
* This is a Converse.js plugin which add support for in-band registration
|
||||
* as specified in XEP-0077.
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import './panel.js';
|
||||
|
@ -2,7 +2,7 @@
|
||||
* @description
|
||||
* Converse.js plugin which shows a list of currently open
|
||||
* rooms in the "Rooms Panel" of the ControlBox.
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import "@converse/headless/plugins/muc/index.js";
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
*/
|
||||
import "../modal";
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
* @description Utility functions to help with parsing XEP-393 message styling hints
|
||||
* @todo Other parsing helpers can be made more abstract and placed here.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @copyright 2020, the Converse.js contributors
|
||||
* @copyright 2022, the Converse.js contributors
|
||||
* @license Mozilla Public License (MPLv2)
|
||||
* @description This is the DOM/HTML utilities module.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user