Project

General

Profile

Download (536 Bytes) Statistics
| Branch: | Revision:
1
/*
2
	Copyright (c) 2004-2008, The Dojo Foundation All Rights Reserved.
3
	Available via Academic Free License >= 2.1 OR the modified BSD license.
4
	see: http://dojotoolkit.org/license for details
5
*/
6

    
7

    
8
if(!dojo._hasResource["dojo.NodeList-html"]){
9
dojo._hasResource["dojo.NodeList-html"]=true;
10
dojo.provide("dojo.NodeList-html");
11
dojo.require("dojo.html");
12
dojo.extend(dojo.NodeList,{html:function(_1,_2){
13
var _3=new dojo.html._ContentSetter(_2||{});
14
this.forEach(function(_4){
15
_3.node=_4;
16
_3.set(_1);
17
_3.tearDown();
18
});
19
return this;
20
}});
21
}
(5-5/26)