LoadingIcon silly errors + link demos to ../dev/ version

This commit is contained in:
Sanj 2012-01-18 01:26:08 +05:30
parent 1bf1eae034
commit 0efc4709a3
9 changed files with 17 additions and 17 deletions

View file

@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>OxJS Dialog Demo</title <title>OxJS Dialog Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../build/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script type="text/javascript" src="js/dialog.js"></script> <script type="text/javascript" src="js/dialog.js"></script>
</head> </head>
<body> <body>

View file

@ -3,7 +3,7 @@
<head> <head>
<title>ox.js list demo</title> <title>ox.js list demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../build/js/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script type="text/javascript" src="js/list.js"></script> <script type="text/javascript" src="js/list.js"></script>
</head> </head>
<body></body> <body></body>

View file

@ -3,7 +3,7 @@
<head> <head>
<title>ox.js SplitPanel Demo</title> <title>ox.js SplitPanel Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../build/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script> <script>
Ox.load('UI', {debug: true}, function() { Ox.load('UI', {debug: true}, function() {
new Ox.SplitPanel({ new Ox.SplitPanel({

View file

@ -3,7 +3,7 @@
<head> <head>
<title>OxJS SyntaxHighlighter Demo</title> <title>OxJS SyntaxHighlighter Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../build/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script type="text/javascript" src="js/syntax.js"></script> <script type="text/javascript" src="js/syntax.js"></script>
</head> </head>
<body></body> <body></body>

View file

@ -3,7 +3,7 @@
<head> <head>
<title>OxJS Test Demo</title> <title>OxJS Test Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../build/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script type="text/javascript" src="js/test.js"></script> <script type="text/javascript" src="js/test.js"></script>
</head> </head>
<body></body> <body></body>

View file

@ -3,7 +3,7 @@
<head> <head>
<title>OxJS TreeList Demo</title> <title>OxJS TreeList Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../build/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script type="text/javascript" src="js/treelist.js"></script> <script type="text/javascript" src="js/treelist.js"></script>
</head> </head>
<body></body> <body></body>

View file

@ -4,7 +4,7 @@
<title>OxJS Unicode Demo</title> <title>OxJS Unicode Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="css/unicode.css"/> <link rel="stylesheet" type="text/css" href="css/unicode.css"/>
<script type="text/javascript" src="../../build/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script type="text/javascript" src="js/unicode.js"></script> <script type="text/javascript" src="js/unicode.js"></script>
</head> </head>
<body></body> <body></body>

View file

@ -3,7 +3,7 @@
<head> <head>
<title>OxJS Video Demo</title> <title>OxJS Video Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../build/Ox.js"></script> <script type="text/javascript" src="../../dev/Ox.js"></script>
<script type="text/javascript" src="js/video.js"></script> <script type="text/javascript" src="js/video.js"></script>
</head> </head>
<body></body> <body></body>

View file

@ -43,8 +43,8 @@ Ox.LoadingIcon = function(options, self) {
that.stop = function() { that.stop = function() {
that.animate({ that.animate({
opacity: 0 opacity: 0
}, 250. function() { }, 250, function() {
.attr({ that.attr({
src: Ox.UI.getImageURL('symbolLoading') src: Ox.UI.getImageURL('symbolLoading')
}); });
}); });