summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-reports/directive/step-form-directive.js
blob: a64309bf3dc83606f5e518d2c6a34182eada5d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
appDS2
.directive('stepForm', function($compile,$http, stepFormFactory) {
    return {
        restrict: 'AE',

        // scope: {
        //     jsonSource: '='
        // },
        link: function(scope, elem, attrs) {
            var jsonSrcName = "app/fusionapp/scripts/view-models/wz_steps/json/step1.json";
            stepFormFactory.renderForm(jsonSrcName, elem, scope);
        }
    }
});