From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: 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 --- includes/js/dojox/wire/demos/WidgetRepeater.js | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100644 includes/js/dojox/wire/demos/WidgetRepeater.js (limited to 'includes/js/dojox/wire/demos/WidgetRepeater.js') diff --git a/includes/js/dojox/wire/demos/WidgetRepeater.js b/includes/js/dojox/wire/demos/WidgetRepeater.js deleted file mode 100644 index ad1b8b0..0000000 --- a/includes/js/dojox/wire/demos/WidgetRepeater.js +++ /dev/null @@ -1,33 +0,0 @@ -if(!dojo._hasResource["dojox.wire.demos.WidgetRepeater"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.wire.demos.WidgetRepeater"] = true; -dojo.provide("dojox.wire.demos.WidgetRepeater") - -dojo.require("dojo.parser"); -dojo.require("dijit._Widget"); -dojo.require("dijit._Templated"); -dojo.require("dijit._Container"); - -dojo.declare("dojox.wire.demos.WidgetRepeater", [ dijit._Widget, dijit._Templated, dijit._Container ], { - // summary: - // Simple widget that does generation of widgets repetatively, based on calls to - // the createNew function and contains them as child widgets. - templateString: "
", - widget: null, - repeater: null, - createNew: function(obj){ - // summary: - // Function to handle the creation of a new widget and appending it into the widget tree. - // obj: - // The parameters to pass to the widget. - try{ - if(dojo.isString(this.widget)){ - dojo.require(this.widget); - this.widget = dojo.getObject(this.widget); - } - this.addChild(new this.widget(obj)); - this.repeaterNode.appendChild(document.createElement("br")); - }catch(e){ console.debug(e); } - } -}); - -} -- cgit v1.2.3