Duder-onomy / svgpan

Automatically exported from code.google.com/p/svgpan
0 stars 0 forks source link

settAttributeNS of undefined or null reference #27

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago

"Unable to get property 'setAttributeNS' of undefined or null reference"

What version of the product are you using? On what operating system?
- Version 1.2.2, Windows 7. Tested with both IE10 and Chrome.

/**
 * Sets attributes of an element.
 */
function setAttributes(element, attributes){
    for (var i in attributes)
        element.setAttributeNS(null, i, attributes[i]);
}

Original issue reported on code.google.com by LinusFl...@gmail.com on 13 Jun 2013 at 10:36