(name, attrs, newparent)
| 149 | } |
| 150 | |
| 151 | function mkElem(name, attrs, newparent) { |
| 152 | var elem = document.createElementNS(ns.svg, name); |
| 153 | setAttrs(elem, attrs); |
| 154 | if(newparent) newparent.appendChild(elem); |
| 155 | return elem; |
| 156 | } |
| 157 | |
| 158 | jQuery.fn.jGraduate = |
| 159 | function(options) { |
no test coverage detected