Skip to content

Commit

Permalink
Removed unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
kiswa committed Nov 25, 2014
1 parent 3e91125 commit c476f3c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions js/controllers/boards.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,15 +205,6 @@ function ($scope, $routeParams, $location, $interval, $window,
// This is not the Angular way.
$scope.updateSortables = function() {
var that = this.$parent;
$('.columnHeader').sortable({
connectWith: '.itemContainer',
change: function() {
alert('change');
},
stop: function() {
alert('stop');
}
});
$('.itemContainer').sortable({
connectWith: '.itemContainer',
placeholder: 'draggable-placeholder',
Expand Down
2 changes: 1 addition & 1 deletion partials/board.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h3><span class="fa fa-exclamation-triangle"></span> Error Loading Board</h3>
<div class="boardColumn" data-ng-repeat="lane in currentBoard.ownLane | orderBy:'position':false"
data-ng-class="{'collapsed': lane.collapsed}" data-lane-id="{{ lane.id }}"
data-context-menu="onContextMenu(lane.id)" data-target="laneMenu">
<h3 class="columnHeader">{{ lane.name }}
<h3>{{ lane.name }}
<span class="badge" title="Column Items" data-ng-if="lane.collapsed">
{{ lane.ownItem.length || 0 }}
</span>
Expand Down

0 comments on commit c476f3c

Please sign in to comment.