- Stundenplandb und Ignore-Kollision Status wird jetzt auch direkt nach dem Tempus start farblich korrekt markiert

- Fehlermeldung beim Eintragen von max-kollision behoben wenn die Variable vorher nicht gesetzt war
- alten Link auf ToDo Liste aus Tempus-Menü entfernt
This commit is contained in:
oesi
2015-04-15 18:55:38 +02:00
parent bda227b9c5
commit 0292f00409
3 changed files with 22 additions and 22 deletions
+11 -12
View File
@@ -90,10 +90,17 @@ function onLoad()
//wenn zb ein IFrame geladen wird
onLoad=function() {return false};
if(document.getElementById('statusbarpanel-ignore_kollision'))
{
// Anzeige von DBTable und Ignorekoll. aktualisieren
updateignorekollision();
updatedbstpltable();
}
//Notizen des Users laden
notiz = document.getElementById('box-notizen');
notiz.LoadNotizTree('','','','','','','', getUsername(),'');
if(notiz)
notiz.LoadNotizTree('','','','','','','', getUsername(),'');
}
catch(e)
{
@@ -294,7 +301,7 @@ function updateignorekollision()
if(getvariable('ignore_kollision')=='true')
{
panel.label='Kollisionscheck AUS';
panel.style.backgroundColor='red';
panel.style.backgroundColor='#FF0000';
panel.style.MozAppearance = "none"
document.getElementById('menu-prefs-ignore_kollision').setAttribute('checked','true');
}
@@ -322,7 +329,7 @@ function updatedbstpltable()
}
else
{
panel.style.backgroundColor='transparent';
panel.style.backgroundColor='';
panel.style.MozAppearance = "none"
}
}
@@ -463,14 +470,6 @@ function UnDo(log_id, bezeichnung)
}
}
// ****
// * Oeffnet die ToDoListe fuers Tempus
// ****
function HelpOpenToDo()
{
window.open('ToDo_Tempus.html','ToDo');
}
// ****
// * Zeigt das Fenster zur Kollisionspruefung auf Studentenebene an
// ****