source: trunk/forum/adm/style/progress_bar.html

Last change on this file was 400, checked in by george, 16 years ago
  • Přidáno: Nové forum phpBB 3.
File size: 676 bytes
Line 
1<!-- INCLUDE simple_header.html -->
2
3<script type="text/javascript">
4// <![CDATA[
5 /**
6 * Close previously opened popup
7 */
8 function close_popup()
9 {
10 if (opener != null)
11 {
12 if (opener.close_waitscreen != null)
13 {
14 if (opener.close_waitscreen == 1)
15 {
16 opener.close_waitscreen = 0;
17 self.close();
18 return 0;
19 }
20 }
21 }
22 setTimeout("close_popup()", 1000);
23 return 0;
24 }
25// ]]>
26</script>
27
28<div class="successbox">
29 <h3>{L_PROGRESS}</h3>
30 <img src="images/progress_bar.gif" alt="{L_PROGRESS}" />
31 <p>{L_PROGRESS_EXPLAIN}</p>
32</div>
33
34<script type="text/javascript">
35// <![CDATA[
36 close_popup();
37// ]]>
38</script>
39
40<!-- INCLUDE simple_footer.html -->
Note: See TracBrowser for help on using the repository browser.