initDefaultValues : function()

in app/scripts/controllers/dialog/flowsWizard.js [64:89]


    initDefaultValues : function(node) {

        var data = {

            ingressPort : "1",
            
            nwSrc : "9.9.1.1",

            installInHw : "false",

            etherType : '0x800',

            priority : "500",

            nodeId : node.nodeType + "|" + node.nodeId,

            actions: []

        };

        this.set('data', data);

        this.set('changedProperties.data', data);


    }