Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
default weight mode to 'connections'
Browse files Browse the repository at this point in the history
  • Loading branch information
shekenahglory committed Jul 29, 2016
1 parent a91a285 commit 52518c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/topology/topology.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ angular.module( 'ripplecharts.topology', [
.controller('TopologyCtrl', function TopologyCtrl($scope, $http, gateways) {
$scope.loading = true;
$scope.status = "Loading...";
$scope.weight = store.get('weight-mode');
$scope.weight = store.get('weight-mode') || 'connections';

var t = new Topology($http);
var m = new TopologyMap($http, t);
Expand Down

0 comments on commit 52518c7

Please sign in to comment.