Skip to content
This repository has been archived by the owner on Jun 19, 2018. It is now read-only.

Commit

Permalink
fix(weekViewWithTimes): fix on timespan click on last column
Browse files Browse the repository at this point in the history
Closes #496
  • Loading branch information
Matt Lewis committed Nov 18, 2016
1 parent 46f9ada commit f8f62e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/directives/mwlElementDimensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ angular

function setDimensions() {
$parse($attrs.mwlElementDimensions).assign($scope, {
width: $element[0].offsetWidth,
width: $element[0].offsetWidth - 1,
height: $element[0].offsetHeight
});
$scope.$applyAsync();
Expand Down

0 comments on commit f8f62e8

Please sign in to comment.