toolkit/javascript/d3/src/core/selection-enter.js
changeset 47 c0b4a8b5a012
equal deleted inserted replaced
46:efd9c589177a 47:c0b4a8b5a012
       
     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_enterPrototype.append = d3_selectionPrototype.append;
       
     9 d3_selection_enterPrototype.insert = d3_selectionPrototype.insert;
       
    10 d3_selection_enterPrototype.empty = d3_selectionPrototype.empty;
       
    11 d3_selection_enterPrototype.node = d3_selectionPrototype.node;