WIP: use strict

This commit is contained in:
cutls
2019-11-24 22:26:19 +09:00
parent ce72432039
commit 2b6cf60868
32 changed files with 37 additions and 10 deletions

View File

@@ -1,3 +1,4 @@
'use strict'
//このソフトについて
function about() {
postMessage(["sendSinmpleIpc", "about"], "*")

View File

@@ -1,3 +1,4 @@
'use strict'
var digitCharacters = [
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",

View File

@@ -1,3 +1,4 @@
'use strict'
/*! Hammer.JS - v2.0.8 - 2016-04-23
* http://hammerjs.github.io/
*

View File

@@ -1,5 +1,6 @@
selectedColumn = 0
selectedToot = 0
'use strict'
var selectedColumn = 0
var selectedToot = 0
$(function ($) {
//キーボードショートカット
$(window).keydown(function (e) {

View File

@@ -1,3 +1,4 @@
'use strict'
//モーダル・ドロップダウンの各種設定
$(document).ready(function () {
// the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered

View File

@@ -1,3 +1,4 @@
'use strict'
var sha256 = function sha256(ascii) {
function rightRotate(value, amount) {
return (value >>> amount) | (value << (32 - amount));

View File

@@ -1,3 +1,4 @@
'use strict'
//バージョンチェッカー
function verck(ver, jp) {
console.log("%c Welcome😊", "color: red;font-size:200%;");
@@ -199,7 +200,7 @@ function verck(ver, jp) {
}
var infostreaming = false;
function infowebsocket() {
infows = new WebSocket("wss://thedesk.top/ws/");
var infows = new WebSocket("wss://thedesk.top/ws/");
infows.onopen = function(mess) {
console.log([tlid, ":Connect Streaming Info:", mess]);
infostreaming = true;