Code Review
/
portal
/
sdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a64309bf3dc83606f5e518d2c6a34182eada5d7f
[portal/sdk.git]
/
1
appDS2
2
.directive('stepForm', function($compile,$http, stepFormFactory) {
3
return {
4
restrict: 'AE',
5
6
// scope: {
7
// jsonSource: '='
8
// },
9
link: function(scope, elem, attrs) {
10
var jsonSrcName = "app/fusionapp/scripts/view-models/wz_steps/json/step1.json";
11
stepFormFactory.renderForm(jsonSrcName, elem, scope);
12
}
13
}
14
});