summaryrefslogtreecommitdiffstats
path: root/dist/js/bundle.js (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-20testing minification with jsminsijanec1-0/+0
2020-05-20fixed install scriptsijanec1-490/+0
2020-05-20err reportingsijanec1-0/+0
2020-05-20Bug fix - modal opens when hash is proivdedrstular1-1/+1
2020-05-17missing loginError added to l18nsijanec1-0/+2
2020-05-17Experimental theme supportrstular1-1/+11
2020-05-17Modified language selection UIrstular1-0/+2
2020-05-17dist should work, TODO: minify and bundlesijanec1-0/+0
2020-05-16Lintingrstular1-453/+453
2020-05-15removed BežiApp from chats sent to GimSISAnton L. Šijanec1-0/+2
2020-05-15Remove beziapp references from chatrstular1-2/+2
Lowers amount of data sent to the server
2020-05-14e2ee msg error alertAnton L. Šijanec1-0/+2
2020-05-14Messaging redesign donerstular1-1/+5
DO NOT MERGE - redesigning messages CSS update DNM - css update DNM - hopefully last CSS update for now DNM - I take it back, one more DNM - debugging DNM - Still debugging DNM DNM DNM DNM - WIP tab interface DNM - better storage management DNM - tabs update DNM - messaging layout update Messaging layout update DNM - styling DNM - Starting to add "compose functionality" DNM - WIP FAB DNM - WIP - modal not dismissible DNM - Modal layout WIP DNM - Encryption checkbox DNM DNM DNM DNM DNM - Hopefully done? DNM - Removed comments
2020-05-14Styling changes, first round of bug fixesrstular1-4/+4
There are (probably) more changes incoming, but we need to discuss them first
2020-05-12DO NOT MERGE --- TESTING!Anton L. Šijanec1-3/+7
2020-04-05chats.js not done yetAnton L. Šijanec1-3/+23
2020-03-21teachers.js, absences.js: uporabljajo gsec.js; gsec.js: spremembe apijaAnton Luka Šijanec1-2/+21
2020-03-101.0.12-beta: podpora za jezikeAnton Luka Šijanec1-3/+5
2020-03-06za narediti jezikeAnton Luka Šijanec1-2/+7
2020-03-06meals.js fix - still timing issuesAnton Luka Šijanec1-3/+14
2020-03-06all js files updated with i18n, not tested yetAnton Luka Šijanec1-0/+4
2020-03-06neki i18n jsAnton Luka Šijanec1-1/+13
2020-03-05added i18n, converted HTML files, TODO: js UI responses, TODO: translationsAnton Luka Šijanec1-0/+391
So basically, multilanguage support from an JavaScript object. - only slovenian and english - no change language UI yet - only HTML strings are actually translated \- all text is translated, but javascript M.toast and other similar stuff does not pass trough s(), d(), S() and D() functions yet - how to i18n: - add a string to js/lang/bundle.js TO ALL LANGUAGES (translation mgmt sys will have to be created) - HTML: create <x-??></x-??> tags, where 1st ? tells wether to just output the string (s) without dot suffix or (d) to try and append a . (for sentences and paragraphs) if it is not there yet. second ? tells wether to leave lowercase strings (l) or (u) to force the first character of the string be uppercase (capitalize()). - put the key of your string as the innerHTML of the x-?? element. - JS: S("key") and D("key") return capitalized, s() and d() do not change case.