mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Support for Internet Explorer browser
This commit is contained in:
13
js/tabber.js
13
js/tabber.js
@@ -30,6 +30,19 @@
|
||||
SOFTWARE.
|
||||
==================================================*/
|
||||
|
||||
var tabberOptions = { 'onLoad': function(argsObj) {
|
||||
if (jQuery.support.boxModel == false)
|
||||
{
|
||||
var w = $("#tab-main").width();
|
||||
var h = $("#casefunctions").height();
|
||||
|
||||
$(".tabberdiv").css("width",w);
|
||||
$(".tabberdiv").css("height",h);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
function tabberObj(argsObj)
|
||||
{
|
||||
var arg; /* name of an argument to override */
|
||||
|
||||
37
js/window_ie6.js
Normal file
37
js/window_ie6.js
Normal file
@@ -0,0 +1,37 @@
|
||||
function LinkUp(element)
|
||||
{
|
||||
var number = document.getElementById(element).selectedIndex;
|
||||
location.href = document.getElementById(element).options[number].value;
|
||||
}
|
||||
|
||||
function openParent(get)
|
||||
{
|
||||
parent.location.href = 'index.php?' + get;
|
||||
}
|
||||
|
||||
|
||||
function openParentNote(get)
|
||||
{
|
||||
parent.location.href = 'index.php?note=' + document.getElementById('note').value + '&' + get;
|
||||
}
|
||||
|
||||
function openParentObject(oid,get)
|
||||
{
|
||||
var a = parent.document.getElementById(oid);
|
||||
if (a)
|
||||
{
|
||||
a.src = get;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function toggleRec(text,link,classes)
|
||||
{
|
||||
var a = parent.document.getElementById('reclink');
|
||||
if (a)
|
||||
{
|
||||
a.innerHTML = text;
|
||||
a.href = "javascript:poptastic('" + link + "');";
|
||||
a.className = classes;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user