Changeset 66:9cee296a3c94

Show
Ignore:
Timestamp:
08/04/09 23:55:30 (15 years ago)
Author:
František Kučera <franta-hg@…>
Branch:
default
Message:

Historie – lepší implementace. Fungují javascriptová tlačítka. Nefungují tlačítka v prohlížeči.
(ale obešli jsme se bez nekonečné smyčky)

Files:
1 modified

Legend:

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

    r65 r66  
    9393 
    9494function ajaxPruvodceZpet() { 
    95     /** TODO: historie navigace */ 
    96     alert('Tato funkce se teprve připravuje.'); 
     95    try { 
     96        window.back(); 
     97        nactiURL(); 
     98    } catch (e) { 
     99        // není historie 
     100    } 
    97101} 
    98102 
    99103function ajaxPruvodceVpred() { 
    100     /** TODO: historie navigace */ 
    101     alert('Tato funkce se teprve připravuje.'); 
     104    try { 
     105        window.forward(); 
     106        nactiURL(); 
     107    } catch (e) { 
     108        // není historie 
     109    } 
    102110} 
    103111