mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-26 18:36:14 -04:00
Bugfix for IE and document.domain
This commit is contained in:
parent
ee11338927
commit
9f46678e5d
3 changed files with 15 additions and 3 deletions
|
@ -130,7 +130,11 @@
|
|||
|
||||
<script src="static/custom/index.js"></script>
|
||||
<script>
|
||||
document.domain = document.domain;
|
||||
if ((!$.browser.msie) && (!($.browser.mozilla && $.browser.version.indexOf("1.8.") == 0)))
|
||||
{
|
||||
document.domain = document.domain; // for comet
|
||||
}
|
||||
|
||||
function go2Name()
|
||||
{
|
||||
var padname = document.getElementById("padname").value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue