summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/class/Smokeping/ui/LoadingAnimation.js
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2011-08-23 15:59:15 +0200
committerTobi Oetiker <tobi@oetiker.ch>2011-08-23 15:59:15 +0200
commit55490b1bfb539386b63e25a8fd90e56c0200c1e8 (patch)
tree8ab5e31b7d1579ae8640dd006c4aa01daf7f8aaa /qooxdoo/source/class/Smokeping/ui/LoadingAnimation.js
parenta1fbf832f9f0ba3043c3300aa0ca3a3d841ce41c (diff)
downloadsmokeping-55490b1bfb539386b63e25a8fd90e56c0200c1e8.tar.gz
smokeping-55490b1bfb539386b63e25a8fd90e56c0200c1e8.tar.xz
clean out smoketrace
Diffstat (limited to 'qooxdoo/source/class/Smokeping/ui/LoadingAnimation.js')
-rw-r--r--qooxdoo/source/class/Smokeping/ui/LoadingAnimation.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/qooxdoo/source/class/Smokeping/ui/LoadingAnimation.js b/qooxdoo/source/class/Smokeping/ui/LoadingAnimation.js
deleted file mode 100644
index c06ccc4..0000000
--- a/qooxdoo/source/class/Smokeping/ui/LoadingAnimation.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/* ************************************************************************
-#module(Smokeping)
-************************************************************************ */
-
-/**
- * The widget showing a detail graph
- */
-
-qx.Class.define('Smokeping.ui.LoadingAnimation',
-{
- extend: qx.ui.layout.CanvasLayout,
-
- /*
- *****************************************************************************
- CONSTRUCTOR
- *****************************************************************************
- */
-
- /**
- * @param graph_url {String} Url to the explorable graph
- *
- */
-
- construct: function () {
- this.base(arguments);
- this.set({
- width: '100%',
- height: '100%'
- });
- var plane = new qx.ui.basic.Terminator();
- plane.set({
- width: '100%',
- height: '100%',
- backgroundColor: '#f0f0f0',
- opacity: 1
- });
- this.add(plane);
-
- var centerbox = new qx.ui.layout.BoxLayout();
- centerbox.set({
- width: '100%',
- height: '100%',
- horizontalChildrenAlign: 'center',
- verticalChildrenAlign: 'middle'
- });
- var animation = new qx.ui.basic.Image(qx.io.Alias.getInstance().resolve('SP/image/ajax-loader.gif'));
- centerbox.add(animation);
- this.add(centerbox);
- }
-});
-
-