aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/widget/tests/test_ColorPicker.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/widget/tests/test_ColorPicker.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/widget/tests/test_ColorPicker.html')
-rw-r--r--includes/js/dojox/widget/tests/test_ColorPicker.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/includes/js/dojox/widget/tests/test_ColorPicker.html b/includes/js/dojox/widget/tests/test_ColorPicker.html
deleted file mode 100644
index 87d173e..0000000
--- a/includes/js/dojox/widget/tests/test_ColorPicker.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
- <title>Dojox ColorPicker Test</title>
- <style type="text/css">
- @import "../../../dojo/resources/dojo.css";
- @import "../../../dijit/themes/tundra/tundra.css";
- @import "../../../dijit/themes/dijit.css";
- @import "../../../dijit/tests/css/dijitTests.css";
- @import "../ColorPicker/ColorPicker.css";
- </style>
-
- <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: true"></script>
- <script type="text/javascript" src="../ColorPicker.js"></script>
- <script type="text/javascript">
- // dojo.require("dojox.widget.ColorPicker");
- dojo.require("dojo.parser"); // scan page for widgets and instantiate them
-
- </script>
-</head>
-<body class="tundra">
-
- <h1 class="testTitle">Dojox ColorPicker test</h1>
-
- <h3>defaults:</h3>
- <div id="picker" dojoType="dojox.widget.ColorPicker"
- onChange="console.log('new val:',this.value)"
- ></div>
-
- <h3>no animation, no hsv, no rgb, no webSafe info:</h3>
- <div id="pickerToo" dojoType="dojox.widget.ColorPicker"
- animatePoint="false"
- showHsv="false"
- showRgb="false"
- webSafe="false"
- onChange="console.log('new val:',this.value)"
- ></div>
-
-</body>
-</html>