summaryrefslogtreecommitdiff
path: root/lib/dojo/NodeList-html.js.uncompressed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-18 10:26:24 +0400
committerAndrew Dolgov <[email protected]>2013-03-18 10:26:26 +0400
commitf0cfe83e3725f9a3928da97a6e3085e79cb25309 (patch)
tree4b0af188defaa807c7bc6ff3a101b41c9166c463 /lib/dojo/NodeList-html.js.uncompressed.js
parent9a2885da170ffd64358b99194095851a2d09c1b6 (diff)
upgrade dojo to 1.8.3 (refs #570)
Diffstat (limited to 'lib/dojo/NodeList-html.js.uncompressed.js')
-rw-r--r--lib/dojo/NodeList-html.js.uncompressed.js53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/dojo/NodeList-html.js.uncompressed.js b/lib/dojo/NodeList-html.js.uncompressed.js
new file mode 100644
index 000000000..4348f6df7
--- /dev/null
+++ b/lib/dojo/NodeList-html.js.uncompressed.js
@@ -0,0 +1,53 @@
+define("dojo/NodeList-html", ["./query", "./_base/lang", "./html"], function(query, lang, html){
+
+// module:
+// dojo/NodeList-html
+
+/*=====
+return function(){
+ // summary:
+ // Adds a chainable html method to dojo.query() / NodeList instances for setting/replacing node content
+};
+=====*/
+
+var NodeList = query.NodeList;
+
+
+lang.extend(NodeList, {
+ html: function(/* String|DomNode|NodeList? */ content, /* Object? */params){
+ // summary:
+ // see `dojo/html.set()`. Set the content of all elements of this NodeList
+ //
+ // content:
+ // An html string, node or enumerable list of nodes for insertion into the dom
+ //
+ // params:
+ // Optional flags/properties to configure the content-setting. See dojo/html._ContentSetter
+ //
+ // description:
+ // Based around `dojo/html.set()`, set the content of the Elements in a
+ // NodeList to the given content (string/node/nodelist), with optional arguments
+ // to further tune the set content behavior.
+ //
+ // example:
+ // | query(".thingList").html("<li data-dojo-type='dojo/dnd/Moveable'>1</li><li data-dojo-type='dojo/dnd/Moveable'>2</li><li data-dojo-type='dojo/dnd/Moveable'>3</li>",
+ // | {
+ // | parseContent: true,
+ // | onBegin: function(){
+ // | this.content = this.content.replace(/([0-9])/g, this.id + ": $1");
+ // | this.inherited("onBegin", arguments);
+ // | }
+ // | }).removeClass("notdone").addClass("done");
+
+ var dhs = new html._ContentSetter(params || {});
+ this.forEach(function(elm){
+ dhs.node = elm;
+ dhs.set(content);
+ dhs.tearDown();
+ });
+ return this; // dojo/NodeList
+ }
+});
+
+return NodeList;
+});