Skip to content

Commit

Permalink
Re-enable FIWARE
Browse files Browse the repository at this point in the history
  • Loading branch information
lcbm authored and netoax committed Aug 8, 2019
1 parent 6b6b62e commit 51c322b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion public/controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ appCtrls.controller('CloudController', function CloudController($scope, $state,
};

$scope.cloudPlatforms = [
{ name: 'KNOT_CLOUD', src: CLOUD_PLATFORMS.KNOT_CLOUD, selected: false }
{ name: 'KNOT_CLOUD', src: CLOUD_PLATFORMS.KNOT_CLOUD, selected: false },
{ name: 'FIWARE', src: CLOUD_PLATFORMS.FIWARE, selected: false }
];

$scope.selectPlatform = function selectPlatform(platform) {
Expand Down
2 changes: 1 addition & 1 deletion public/views/config.cloud.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h3 class="panel-title">Step 1. Cloud service</h3>
<p>Select your cloud platform</p>
<div class="cloud-grid">
<div class="cloud-grid-item" ng-repeat="cloud in cloudPlatforms">
<a href ng-init="selectPlatform(cloud.name)">
<a href ng-click="selectPlatform(cloud.name)">
<div class="cloud" ng-class="{'selected': cloud.selected}">
<img ng-src={{cloud.src}} alt="{{cloud.name}}">
</div>
Expand Down

0 comments on commit 51c322b

Please sign in to comment.