mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
ee2ce394b1
* View thumbnail button will now use SweetAlert instead of Bulma's modal (preview: https://i.fiery.me/HDwX.png). It can be made more pretty but this will do for now. * Fixed a bug where "Copy link to clipboard" button in albums list would only copy its identifier instead of the full URL. Some other code improvements: * All instances of adding/removing class names with Element.className will now use Element.classList. So instead of appending and replacing the string, it will now use add/remove functions, thus making it much easier to understand. * "onkeypress" in auth page moved into a single addEventListener, sort of. * Removed VSCode's discord extension entry from workspace settings. Eh, I'll go with user settings for this one.
23 lines
601 B
JSON
23 lines
601 B
JSON
{
|
|
"beautify.tabSize": 2,
|
|
"beautify.options": {
|
|
"css": {
|
|
"indent_size": 2,
|
|
"indent_char": " "
|
|
}
|
|
},
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": false,
|
|
"editor.rulers": [
|
|
120
|
|
],
|
|
"editor.wordWrapColumn": 120,
|
|
"editor.wordWrap": "bounded",
|
|
"editor.wrappingIndent": "indent",
|
|
"eslint.enable": true,
|
|
"eslint.autoFixOnSave": true,
|
|
"javascript.format.enable": false,
|
|
"javascript.suggestionActions.enabled": false,
|
|
"javascript.validate.enable": false,
|
|
"npm-intellisense.importES6": false
|
|
} |