aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector.js
blob: 905e9f94e0d8776ac8bf4d1f32631f14a53e3807 (plain)
1
2
3
4
5
// Method for getting an element by id
SVG.get = function(id) {
  var node = document.getElementById(idFromReference(id) || id)
  if (node) return node.instance
}