aboutsummaryrefslogtreecommitdiffstats
path: root/src/use.js
blob: 2b8e65e2fe644b72d0b03e99f5f273949936005e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
SVG.Use = SVG.invent({
  // Initialize node
  create: 'use',

  // Inherit from
  inherit: SVG.Shape,

  // Add class methods
  extend: {
    // Use element as a reference
    element: function (element, file) {
      // Set lined element
      return this.attr('href', (file || '') + '#' + element, SVG.xlink)
    }
  },

  // Add parent method
  construct: {
    // Create a use element
    use: function (element, file) {
      return this.put(new SVG.Use()).element(element, file)
    }
  }
})