Commit 06c5074957dc6968583d3df3eb8427bcc2abf623

Authored by Kevin G Fourie
1 parent 8ad633b1

Merged in some changes from Ashley. These where around the removal of

the javascript loading/progress indicator.
resources/css/kt-framing.css
... ... @@ -2217,21 +2217,6 @@ body #content #add_dashlet
2217 2217 margin-right: 3em;
2218 2218 }
2219 2219  
2220   -.modalDiv{
2221   - filter:alpha(opacity=80);
2222   - -moz-opacity:0.8;
2223   - padding-left: 30px;
2224   - padding-top: 5px;
2225   - width: 260px;
2226   - height: 50px;
2227   - background-color: #CCCCCC;
2228   - position: absolute;
2229   - top: 400px;
2230   - left: 500px;
2231   - display: block;
2232   - z-index: 2;
2233   -}
2234   -
2235 2220 /*contenttype_href class style is used to stop underline error on a hyperlink in IE*/
2236 2221 .contenttype_href
2237 2222 {
... ...
resources/js/loader.js
... ... @@ -32,21 +32,4 @@ window.onload = function()
32 32 footerBlock.applyCornersToAll();
33 33 }
34 34 }
35   - Loader();
36 35 }
37   -
38   - window.onsubmit = function(){
39   - if(typeof disable_loader == "undefined"){
40   - var myElem = document.getElementById("modalDiv");
41   - if(myElem != null){
42   - myElem.style.display = "block";
43   - }
44   - }
45   - }
46   - function Loader()
47   -{
48   - var myElem = document.getElementById("modalDiv");
49   - if(myElem != null){
50   - myElem.style.display = "none";
51   - }
52   -}
53 36 \ No newline at end of file
... ...
templates/kt3/standard_page.smarty
... ... @@ -247,11 +247,6 @@
247 247 {/if}
248 248 {/foreach}
249 249 </div>
250   - <div class="modalDiv" id="modalDiv">
251   - <img src="{$rootUrl}/resources/graphics/thirdparty/loader.gif" border="0"/><br>
252   - <div style="width: 60px; padding-left: 80px;"> Loading... </div>
253   -
254   - </div>
255 250 </td>
256 251 <td valign="top" width="100%">
257 252 <div id="content" {if $page->content_class}class="{$page->content_class}"{/if}>
... ...