Bugfix for IE and document.domain
This commit is contained in:
parent
ee11338927
commit
9f46678e5d
|
@ -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;
|
||||
|
|
|
@ -283,7 +283,11 @@
|
|||
<script type="text/javascript" src="../socket.io/socket.io.js"></script>
|
||||
<script type="text/javascript" src="../javascripts/lib/ep_etherpad-lite/static/js/pad.js?callback=require.define"></script>
|
||||
<script type="text/javascript">
|
||||
document.domain = document.domain;
|
||||
if ((!$.browser.msie) && (!($.browser.mozilla && $.browser.version.indexOf("1.8.") == 0)))
|
||||
{
|
||||
document.domain = document.domain; // for comet
|
||||
}
|
||||
|
||||
var clientVars = {};
|
||||
(function () {
|
||||
|
||||
|
|
|
@ -130,7 +130,11 @@
|
|||
<script type="text/javascript" src="../../static/custom/timeslider.js"></script>
|
||||
|
||||
<script type="text/javascript" >
|
||||
document.domain = document.domain;
|
||||
if ((!$.browser.msie) && (!($.browser.mozilla && $.browser.version.indexOf("1.8.") == 0)))
|
||||
{
|
||||
document.domain = document.domain; // for comet
|
||||
}
|
||||
|
||||
var clientVars = {};
|
||||
|
||||
(function () {
|
||||
|
|
Loading…
Reference in New Issue