diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2017-04-03 15:08:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@open-o.org> | 2017-04-03 15:08:17 +0000 |
commit | 3af8426fc7c241fe20b2c00a669c990534f6e148 (patch) | |
tree | d7ee670bbff8016eae0dadadc4f9f8056024d543 /lifecyclemgr/src/main/webapp | |
parent | da0a41905890a1009d122c565c5b5801b5d4fc69 (diff) | |
parent | e9d06d2e32153000dda2a10214e81de6d56bbe0d (diff) |
Merge "Service mgr bug fix"
Diffstat (limited to 'lifecyclemgr/src/main/webapp')
-rw-r--r-- | lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js index 6c3dac4e..78233c77 100644 --- a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js +++ b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js @@ -286,19 +286,19 @@ var app = angular.module("lcApp", ["ui.router", "ngTable"])/*, 'ui.bootstrap', ' .then(function (tmplatesResponse) {
console.log("Data Template :: ");
$log.info(tmplatesResponse);
- // var templatesInfo = translateToTemplatesInfo(tmplatesResponse);
- // document.getElementById("svcTempl").innerHTML = templatesInfo;
- $scope.optionsValue = tmplatesResponse;
+ var templatesInfo = translateToTemplatesInfo(tmplatesResponse);
+ document.getElementById("svcTempl").innerHTML = templatesInfo;
+ /* $scope.optionsValue = tmplatesResponse;
var dropSimple_data = {
"errmsg" : "Service template is required.",
"modalVar" : "lifecycleData.optSelect",
"labelField" : "templateName",
- "optionsValue" : JSON.stringify(tmplatesResponse),
+ "optionsValue" : JSON.stringify(templatesInfo),
"errtag":"lcdropdownErr",
"errfunc":"validatedropdown",
"required":true
- }
- $('#myModal #plainDropDown').html($compile(Mustache.to_html(dropDown, dropSimple_data))($scope));
+ }*/
+ //$('#myModal #plainDropDown').html($compile(Mustache.to_html(dropDown, dropSimple_data))($scope));
}, function (reason) {
$scope.error = "Error ! " + reason;
});
|