diff options
author | Marvin Borner | 2019-01-28 17:25:18 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-28 17:25:18 +0100 |
commit | 353d6038b238b5dda6f2494f9d18a2c45131c50a (patch) | |
tree | ff69bcb9597aec6c1a4701b6f412beb8c99148f8 /public/scripts | |
parent | 3f6ef340af9a14dcaa61eb3b2e3ba731f727b414 (diff) |
Generated copyright notices
Diffstat (limited to 'public/scripts')
-rw-r--r-- | public/scripts/chat.js | 7 | ||||
-rw-r--r-- | public/scripts/encryption.js | 7 | ||||
-rw-r--r-- | public/scripts/input_pin.js | 7 | ||||
-rw-r--r-- | public/scripts/main.js | 7 |
4 files changed, 28 insertions, 0 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index 580c818..35e75db 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -1,3 +1,10 @@ +/* + * chat.js + * Copyright (c) 2019, Texx + * License: MIT + * See https://github.com/texxme/Texx/blob/master/LICENSE + */ + // general imports const $ = require('jquery'); const crypto = require('crypto'); diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js index 323a5e0..6406906 100644 --- a/public/scripts/encryption.js +++ b/public/scripts/encryption.js @@ -1,3 +1,10 @@ +/* + * encryption.js + * Copyright (c) 2019, Texx + * License: MIT + * See https://github.com/texxme/Texx/blob/master/LICENSE + */ + const Dexie = require('dexie'); const openpgp = require('openpgp'); diff --git a/public/scripts/input_pin.js b/public/scripts/input_pin.js index b496e95..c28d6e9 100644 --- a/public/scripts/input_pin.js +++ b/public/scripts/input_pin.js @@ -1,3 +1,10 @@ +/* + * input_pin.js + * Copyright (c) 2019, Texx + * License: MIT + * See https://github.com/texxme/Texx/blob/master/LICENSE + */ + const $ = require('jquery'); let pin = []; diff --git a/public/scripts/main.js b/public/scripts/main.js index 6b3d287..0d1ac3a 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -1,3 +1,10 @@ +/* + * main.js + * Copyright (c) 2019, Texx + * License: MIT + * See https://github.com/texxme/Texx/blob/master/LICENSE + */ + /** * This file only pulls all dependencies together * so it is compileable by browserify |