Show
Ignore:
Timestamp:
05/30/09 14:56:39 (15 years ago)
Author:
František Kučera <franta-hg@…>
Branch:
default
Message:

Stavová hláška pro načítání historie.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • java/sql-vyuka/web/hlavni.js

    r20 r21  
    100100function ajaxZobrazitHistorii() { 
    101101    if (ajax.readyState == 4 || ajax.readyState == 0) { 
     102        zobrazStav('Načítá se historie…'); 
    102103        ajax.open("POST", 'ajax?akce=historie', true); 
    103104        ajax.onreadystatechange = function() { 
    104105            if (ajax.readyState == 4) { 
    105106                zobrazVystup(ajax.responseText); 
     107                zobrazStav(''); 
    106108            } 
    107109        };