domain.cls versjonshistorikk - 6 versjoner
domain.cls av Bruce Wen
domain.cls versjonshistorikk - 6 versjoner
Vær forsiktig med eldre versjoner! Disse versjonene er vist som referanse og til testformål.Du burde alltid bruke den siste versjonen av et tillegg.
Siste versjon
Versjon 1.6
Utgitt 22. feb. 2022 - 68,21 kBFungerer med firefox 48.0 og nyereTo support sub-domain like en.wikipedia.org, we need to use en_wikipedia as body class to distinguish other language version of wikipedia. Similar, google translate should have different body class from gmail.Kildekode utgitt under Mozilla Public License 2.0
Eldre versjoner
Versjon 1.5
Utgitt 22. feb. 2022 - 68,21 kBFungerer med firefox 48.0 og nyereBug fix:
If domain name consists of 2 or 3 labels, the code below won't work - it will return empty:
d_core = d_parts.slice(1, d_parts.length-1).join('_')
It's fixed as:
var d_core = d_parts[d_parts.length-2]
if (d_parts.length > 3){
d_core = d_parts.slice(1, d_parts.length-1).join('_')
}Kildekode utgitt under Mozilla Public License 2.0
Versjon 1.4
Utgitt 22. feb. 2022 - 68,17 kBFungerer med firefox 48.0 og nyereFix bug:
by using d_array.slice(start, end) - end is not included. That's different from node.js behavior.Kildekode utgitt under Mozilla Public License 2.0
Versjon 1.3
Utgitt 22. feb. 2022 - 68,17 kBFungerer med firefox 48.0 og nyereIf domain name consists of more than 3 labels, then use labels from 2nd to the one before last as the body class name. The dot will be replaced with underscore.
For example, if domain name is sandbox.gitlab.test.java.oracle.com, then use "gitlab_test_java_oracle" as body class.Kildekode utgitt under Mozilla Public License 2.0
Versjon 1.2
Utgitt 17. feb. 2022 - 8,84 kBFungerer med firefox 48.0 og nyereBy using domain name and top level domain are not necessary, and it will cause css misunderstanding the 'class' name as the dot '.' is special keyword for css class selector.
Thus, change to use domain name only as body class.Kildekode utgitt under Mozilla Public License 2.0
Versjon 1.1
Utgitt 16. feb. 2022 - 8,84 kBFungerer med firefox 48.0 og nyereFix domain name
Only choose last 2 parts in document.domain as domain nameKildekode utgitt under Mozilla Public License 2.0