aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/timing/tests/test_Sequence.html
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-14 15:39:19 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-14 15:39:19 +0000
commit1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch)
tree3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/timing/tests/test_Sequence.html
parent104d59099e048688c4dbac37d72137006e396558 (diff)
downloadsemanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz
semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/timing/tests/test_Sequence.html')
-rw-r--r--includes/js/dojox/timing/tests/test_Sequence.html80
1 files changed, 0 insertions, 80 deletions
diff --git a/includes/js/dojox/timing/tests/test_Sequence.html b/includes/js/dojox/timing/tests/test_Sequence.html
deleted file mode 100644
index 84f4bfb..0000000
--- a/includes/js/dojox/timing/tests/test_Sequence.html
+++ /dev/null
@@ -1,80 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
- <title>dojox.timing.Sequence class</title>
-
- <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: true" ></script>
- <script type="text/javascript" src="../Sequence.js"></script>
- <style type="text/css">
- @import "../../../dojo/resources/dojo.css";
- @import "../../../dijit/themes/dijit.css";
- @import "../../../dijit/themes/tundra/tundra.css";
- @import "../../../dijit/tests/css/dijitTests.css";
- </style>
- <script type="text/javascript">
- // dojo.require("dojox.timing.Sequence");
-
- var seqObj = null; var outputNode = null;
-
- dojo.addOnLoad(function(){
- outputNode = dojo.byId('logBox');
- seqObj = new dojox.timing.Sequence({});
- });
-
- function runSequence(){
- outputNode.innerHTML = "";
- seqObj.go(seq, function() { logMsg('done') });
- };
-
- function logMsg(msg){
- outputNode.innerHTML += msg + "<br>";
- }
-
- function showMessage(msg) {
- logMsg(msg);
- }
-
- function returnWhenDone() {
- logMsg("in returnWhenDone");
- window.setTimeout(continueSequence,1000);
- return false;
- }
- function continueSequence() {
- // continue the sequence run
- seqObj.goOn();
- }
-
- // this is our example sequence array:
- var seq = [
- {func: [showMessage, window, "i am first"], pauseAfter: 1000},
- {func: [showMessage, window, "after 1000ms pause this should be seen"], pauseAfter: 2000},
- {func: [showMessage, window, "another 2000ms pause and 1000ms pause before"], pauseAfter: 1000},
- {func: [showMessage, window, "repeat 10 times and pause 100ms after"], repeat: 10, pauseAfter: 100},
- {func: returnWhenDone} // no array, just a function to call
- ];
-
-
-
-
- </script>
-</head>
-<body class="tundra">
-
- <h1>dojox.timing.Sequence tests</h1>
-
- <br>(example code in page source)<br>
- <input type="button" onClick="runSequence()" value="Run Sequence">
-
- <h3>Sequence output:</h3>
- <div id="logBox" style="width:420px; height:250px; overflow:auto; border:1px solid #ccc;">
- </div>
-
- <p>TODO: maybe need to put an _Animation sequence example here? seems much more robust
- than using chains and combines with delays and durations to hack timing ... also, need
- examples for stop() and other methods of class</p>
-
-
-
-</body>
-</html>