diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/data/demos/widgets/PicasaView.js | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-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/data/demos/widgets/PicasaView.js')
-rw-r--r-- | includes/js/dojox/data/demos/widgets/PicasaView.js | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/includes/js/dojox/data/demos/widgets/PicasaView.js b/includes/js/dojox/data/demos/widgets/PicasaView.js deleted file mode 100644 index 6b100ac..0000000 --- a/includes/js/dojox/data/demos/widgets/PicasaView.js +++ /dev/null @@ -1,37 +0,0 @@ -if(!dojo._hasResource["dojox.data.demos.widgets.PicasaView"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.data.demos.widgets.PicasaView"] = true; -dojo.provide("dojox.data.demos.widgets.PicasaView"); -dojo.require("dijit._Templated"); -dojo.require("dijit._Widget"); - -dojo.declare("dojox.data.demos.widgets.PicasaView", [dijit._Widget, dijit._Templated], { - //Simple demo widget for representing a view of a Picasa Item. - - templateString:"<table class=\"picasaView\">\n\t<tbody>\n\t\t<tr class=\"picasaTitle\">\n\t\t\t<td>\n\t\t\t\t<b>\n\t\t\t\t\tTitle:\n\t\t\t\t</b>\n\t\t\t</td>\n\t\t\t<td dojoAttachPoint=\"titleNode\">\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>\n\t\t\t\t<b>\n\t\t\t\t\tAuthor:\n\t\t\t\t</b>\n\t\t\t</td>\n\t\t\t<td dojoAttachPoint=\"authorNode\">\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td colspan=\"2\">\n\t\t\t\t<b>\n\t\t\t\t\tSummary:\n\t\t\t\t</b>\n\t\t\t\t<span class=\"picasaSummary\" dojoAttachPoint=\"descriptionNode\"></span>\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td dojoAttachPoint=\"imageNode\" colspan=\"2\">\n\t\t\t</td>\n\t\t</tr>\n\t</tbody>\n</table>\n\n", - - //Attach points for reference. - titleNode: null, - descriptionNode: null, - imageNode: null, - authorNode: null, - - title: "", - author: "", - imageUrl: "", - iconUrl: "", - - postCreate: function(){ - this.titleNode.appendChild(document.createTextNode(this.title)); - this.authorNode.appendChild(document.createTextNode(this.author)); - this.descriptionNode.appendChild(document.createTextNode(this.description)); - var href = document.createElement("a"); - href.setAttribute("href", this.imageUrl); - href.setAttribute("target", "_blank"); - var imageTag = document.createElement("img"); - imageTag.setAttribute("src", this.iconUrl); - href.appendChild(imageTag); - this.imageNode.appendChild(href); - } -}); - -} |