source: branches/posledni/forum/styles/wowred/template/posting_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: 1006 bytes
Line 
1<!-- INCLUDE simple_header.html -->
2<script type="text/javascript">
3// <![CDATA[
4 /**
5 * Close upload popup
6 */
7 function close_popup()
8 {
9 if (opener != null)
10 {
11 if (opener.close_waitscreen != null)
12 {
13 if (opener.close_waitscreen == 1)
14 {
15 opener.close_waitscreen = 0;
16 self.close();
17 return 0;
18 }
19 }
20 }
21 setTimeout("close_popup()", 1000);
22 return 0;
23 }
24// ]]>
25</script>
26
27<table width="100%" border="0" cellspacing="0" cellpadding="10">
28<tr>
29 <td>
30 <table width="100%" border="0" cellspacing="1" cellpadding="4">
31 <tr>
32 <td valign="top" class="row1" align="center"><br /><span class="genmed">{L_UPLOAD_IN_PROGRESS}</span><br /><br /><div style="align:center">{PROGRESS_BAR}</div><br /><br /><span class="genmed"><a href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a></span><br /><br /></td>
33 </tr>
34 </table>
35 </td>
36</tr>
37</table>
38
39<script type="text/javascript">
40// <![CDATA[
41 close_popup();
42// ]]>
43</script>
44<!-- INCLUDE simple_footer.html -->
Note: See TracBrowser for help on using the repository browser.