~bcsaller/juju-gui/update-reductions

« back to all changes in this revision

Viewing changes to lib/d3/src/core/selection-enter.js

  • Committer: kapil.foss at gmail
  • Date: 2012-07-13 18:45:59 UTC
  • Revision ID: kapil.foss@gmail.com-20120713184559-2xl7be17egsrz0c9
reshape

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
function d3_selection_enter(selection) {
2
 
  d3_arraySubclass(selection, d3_selection_enterPrototype);
3
 
  return selection;
4
 
}
5
 
 
6
 
var d3_selection_enterPrototype = [];
7
 
 
8
 
d3.selection.enter = d3_selection_enter;
9
 
d3.selection.enter.prototype = d3_selection_enterPrototype;
10
 
 
11
 
d3_selection_enterPrototype.append = d3_selectionPrototype.append;
12
 
d3_selection_enterPrototype.insert = d3_selectionPrototype.insert;
13
 
d3_selection_enterPrototype.empty = d3_selectionPrototype.empty;
14
 
d3_selection_enterPrototype.node = d3_selectionPrototype.node;