summaryrefslogtreecommitdiff
path: root/core/base64.js
Commit message (Collapse)AuthorAgeFilesLines
* Standardize on camelCase in Base64Samuel Mannehed2020-05-311-4/+4
|
* Use default argument for base64Juanjo Diaz2019-02-261-3/+1
|
* Enforce object key spacingPierre Ossman2018-09-061-3/+3
|
* Enforce comma spacingPierre Ossman2018-09-061-0/+2
|
* Use ES6 classesJuanjo Diaz2018-07-121-3/+2
| | | | | Always use the shorthand notation if the function is a method of an object or class `{ foo() { ... } }` or `class bar { foo() { ... } }` unless it's a callback in which case you a fat arrow function should be used `{ cb: () => { ... } }`
* Prefer const/let over varJuanjo Diaz2018-05-241-32/+27
|
* Add eslint and fix reported issuesJuanjo Diaz2018-05-241-1/+1
|
* Remove jshint commentsJuanjo Diaz2018-01-311-4/+0
|
* Remove console statementsJuanjo Diaz2018-01-301-1/+2
|
* Refactor ES6 module structure/split up UtilSolly Ross2017-03-211-6/+4
| | | | | | | | | | This commit restructures many of the ES6 modules, splitting them up to actual export multiple functions instead of a single object. It also splits up Util into multiple sub-modules, to make it easier to maintain. Finally, localisation is renamed to localization.
* Uncomment ES6 module syntaxSolly Ross2017-02-261-1/+1
| | | | | | | | This removes the special comment part of the ES6 module syntax, opting to enable ES6 module syntax by default. It also appends `.js` to all import paths to better support in-browser loading.
* Enable noVNC to become BrowserifiableSolly Ross2016-09-161-0/+115
This commit restructures noVNC, splitting it into the core directory and the app directory, with the former containing core noVNC parts, and the latter containing parts specific to the application.