Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/static/init.html
diff options
context:
space:
mode:
Diffstat (limited to 'websdk/static/init.html')
-rw-r--r--websdk/static/init.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/websdk/static/init.html b/websdk/static/init.html
deleted file mode 100644
index 6515534..0000000
--- a/websdk/static/init.html
+++ /dev/null
@@ -1,26 +0,0 @@
- <!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-120.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>