|
Last change
on this file was 24, checked in by george, 15 years ago |
- Přidáno: Z PHP kódů převedeno zobrazení stránek a hlavního menu. Pro generování kostry použity třídy HTMLClasses a XMLClasses.
- Přidáno: Styly a obrázky.
|
|
File size:
369 bytes
|
| Line | |
|---|
| 1 | function confirmAction(theMessage)
|
|---|
| 2 | {
|
|---|
| 3 | // TODO: Confirmation is not required in the configuration file
|
|---|
| 4 | // or browser is Opera (crappy js implementation)
|
|---|
| 5 | if (typeof(window.opera) != 'undefined')
|
|---|
| 6 | {
|
|---|
| 7 | return true;
|
|---|
| 8 | }
|
|---|
| 9 |
|
|---|
| 10 | var is_confirmed = confirm(theMessage);
|
|---|
| 11 |
|
|---|
| 12 | return is_confirmed;
|
|---|
| 13 | }
|
|---|
| 14 |
|
|---|
| 15 | function ReloadElement(ID, URL)
|
|---|
| 16 | {
|
|---|
| 17 | $('#' + ID).load(URL);
|
|---|
| 18 | return false;
|
|---|
| 19 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.