Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/studio/static/init.html
blob: 069b02151ba2e94d36035963d2ad6d1c64757341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
    <!DOCTYPE HTML>
    <html lang="en-US">
    <head>
        <meta charset="UTF-8" />
        <title></title>
        <link rel="stylesheet" href="static/css/main.css" type="text/css" />
        <link rel="stylesheet" href="static/css/sugar-theme/jquery-ui-1.8.15.custom.css" />
        <script src="static/js/jquery-1.6.2.js" type="text/javascript"></script>
        <script src="static/js/jquery-ui-1.8.15.custom.min.js" type="text/javascript"></script>
        <!--script src="js/websdk-1.js" type="text/javascript"></script-->
    </head>
    <body>
        <img id="throbber" class="bling" src="images/throbber.gif"/>
        <script>
        jQuery.fn.center = function () {
            this.css("position","absolute");
            this.css("top", (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop() + "px");
            this.css("left", (($(window).width() - this.outerWidth()) / 2) + $(window).scrollLeft() + "px");
            return this;
        }
        window.onload = function() {
            $("#throbber").center().fadeIn(1000);
        }
    </script>
</body>
</html>