Skip to content

Commit

Permalink
Merge pull request #346 from sephcoster/sprint22
Browse files Browse the repository at this point in the history
Peer Branch Selection Exclusivity, Style Tweaks
  • Loading branch information
mehtadev17 committed May 5, 2015
2 parents 02502a8 + 2d7142b commit ac6ce31
Show file tree
Hide file tree
Showing 9 changed files with 495 additions and 450 deletions.
11 changes: 10 additions & 1 deletion frontend/src/js/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,15 @@
}
addParam('peers', status);
getPeerLinks();
$('#peerSelect').prop('checked', status );

// If Peer is checked, uncheck and disable Peers and branches as they will not be displayed for peer set.
$('#branchSelect').prop('disabled', status );
$('#superSelect').prop('disabled', status );
toggleBranches(false);
toggleSuper(false);

// Check the box
$('#peerSelect').prop('checked', status );
}

// Uses jQuery BlockUI plugin to block UI on data loading
Expand Down Expand Up @@ -202,6 +209,8 @@
// or layer type.
}


// Adjudicate the variables associated with selected app layers across the application (names, paths, etc)
function getLayerType( layer ){
var type, keyPath, displayName;

Expand Down
Loading

0 comments on commit ac6ce31

Please sign in to comment.