mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
Convert remaining simple quotes to double quotes
This commit is contained in:
parent
e37d5f363b
commit
3dc98ec797
3 changed files with 4 additions and 4 deletions
|
@ -60,11 +60,11 @@ function isProduction() {
|
|||
function parseQueryString() {
|
||||
let query = window.location.search.substring(1);
|
||||
let params = {};
|
||||
query.split('&').forEach((s) => {
|
||||
query.split("&").forEach((s) => {
|
||||
if (!s) {
|
||||
return;
|
||||
}
|
||||
let pair = s.split('=');
|
||||
let pair = s.split("=");
|
||||
params[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1] || "");
|
||||
});
|
||||
return params;
|
||||
|
|
|
@ -167,7 +167,7 @@ export default class Composer extends Component {
|
|||
return;
|
||||
}
|
||||
|
||||
let text = event.clipboardData.getData('text');
|
||||
let text = event.clipboardData.getData("text");
|
||||
|
||||
event.preventDefault();
|
||||
event.stopImmediatePropagation();
|
||||
|
|
|
@ -138,7 +138,7 @@ export default class ConnectForm extends Component {
|
|||
name="autojoin"
|
||||
checked=${this.state.autojoin}
|
||||
/>
|
||||
Auto-join channel${s} <strong>${channels.join(', ')}</strong>
|
||||
Auto-join channel${s} <strong>${channels.join(", ")}</strong>
|
||||
</label>
|
||||
<br/><br/>
|
||||
`;
|
||||
|
|
Loading…
Reference in a new issue