Changeset 4398
- Timestamp:
- 07/14/07 11:16:11 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.3/amp_conf/htdocs/admin/views/freepbx.php
r4395 r4398 36 36 <head> 37 37 <title><?php echo _($title) ?></title> 38 <meta http-equiv="Content-Type" content="text/html" />39 <link href="common/mainstyle.css" rel="stylesheet" type="text/css" />40 <link href="common/freepbx.css" rel="stylesheet" type="text/css" />41 <link rel="shortcut icon" type="image/vnd.microsoft.icon" href="favicon.ico" />38 <meta http-equiv="Content-Type" content="text/html"> 39 <link href="common/mainstyle.css" rel="stylesheet" type="text/css"> 40 <link href="common/freepbx.css" rel="stylesheet" type="text/css"> 41 <link rel="shortcut icon" type="image/vnd.microsoft.icon" href="favicon.ico"> 42 42 <!--[if IE]> 43 43 <link href="common/ie.css" rel="stylesheet" type="text/css"> … … 72 72 ?> 73 73 74 <script type="text/javascript" src="firebug/firebugx.js"></script> 74 75 <script type="text/javascript" src="common/script.js.php"></script> 75 76 <script type="text/javascript" src="common/jquery.js"></script> … … 78 79 <script type="text/javascript" src="common/jquery.interface.js"></script> <!-- used to fade colors --> 79 80 <script type="text/javascript" src="common/interface.dim.js"></script> <!-- used for interface blocking (reload, modadmin) --> 80 <link href="common/jquery.tabs.css" rel="stylesheet" type="text/css" />81 <link href="common/jquery.tabs.css" rel="stylesheet" type="text/css"> 81 82 82 83 <!--[if IE]> freepbx/branches/2.3/amp_conf/htdocs/admin/views/freepbx_admin.php
r4395 r4398 106 106 107 107 108 <div id= \"language\">108 <div id="language"> 109 109 110 110 <?php … … 150 150 </noscript> 151 151 152 <!-- --- begin generated page content ----->152 <!-- begin generated page content --> 153 153 <?php echo $content; ?> 154 <!-- --- end generated page content ----->154 <!-- end generated page content --> 155 155 156 156 </div> <!-- .content --> freepbx/branches/2.3/amp_conf/htdocs/admin/views/freepbx_reload.php
r4388 r4398 1 1 <script type="text/javascript"> 2 2 function freepbx_show_reload() { 3 //$.blockUI($('#reloadBox')[0], { width: '400px' }); 4 //$(document.body).append('<div style="width:100%; height:100%; background:#ccc; opacity:50%;"></div>'); 3 /* 4 $.blockUI($('#reloadBox')[0], { width: '400px' }); 5 $(document.body).append('<div style="width:100%; height:100%; background:#ccc; opacity:50%;"></div>'); 6 */ 5 7 6 8 $("#reload_confirm").show(); … … 47 49 $("#reload_response").slideDown(); 48 50 }); 49 } ,51 } 50 52 }); 51 53 … … 69 71 Reloading will apply all configuration changes made in FreePBX to your PBX engine and make them active. 70 72 <ul> 71 <li><a href="#" onclick="run_reload();"><img src="images/accept.png" height="16" width="16" border="0" /> Continue with reload</a></li>72 <li><a href="#" onclick="freepbx_stop_reload();"><img src="images/cancel.png" height="16" width="16" border="0" /> Cancel reload and go back to editing</a></li>73 <li><a href="#" onclick="run_reload();"><img src="images/accept.png" height="16" width="16" border="0" alt="Accept" /> Continue with reload</a></li> 74 <li><a href="#" onclick="freepbx_stop_reload();"><img src="images/cancel.png" height="16" width="16" border="0" alt="Cancel" /> Cancel reload and go back to editing</a></li> 73 75 </ul> 74 76 </div> … … 76 78 <div id="reload_reloading" style="display:none;"> 77 79 <h2>Please wait, reloading..</h2> 78 <img src="images/loading.gif" width="66" height="66" />80 <img src="images/loading.gif" width="66" height="66" alt="Loading..." /> 79 81 </div> 80 82
