mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-06-17 19:54:50 -04:00
Add direction info
This commit is contained in:
parent
fdf6628cc5
commit
fefbdb6fe1
2 changed files with 12 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
(function(document) {
|
||||
// Set language for l10n
|
||||
var language = document.cookie.match(/language=(\w{2,3})(-w+)?/);
|
||||
var language = document.cookie.match(/language=((\w{2,3})(-w+)?)/);
|
||||
if(language) language = language[1];
|
||||
|
||||
html10n.bind('indexed', function() {
|
||||
|
@ -9,5 +9,6 @@
|
|||
|
||||
html10n.bind('localized', function() {
|
||||
document.documentElement.lang = html10n.getLanguage()
|
||||
document.documentElement.dir = html10n.getDirection()
|
||||
})
|
||||
})(document)
|
Loading…
Add table
Add a link
Reference in a new issue