Skip to content

Commit

Permalink
Fixed jslint error (missing semicolon).
Browse files Browse the repository at this point in the history
  • Loading branch information
oblador committed Apr 24, 2015
1 parent 4d21748 commit d1052fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/directives/scrollspy.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ angular.module('duScroll.scrollspy', ['duScroll.spyAPI'])

Spy.prototype.getTargetElement = function() {
if (!this.target && this.targetId) {
this.target = document.getElementById(this.targetId) || document.getElementsByName(this.targetId)[0]
this.target = document.getElementById(this.targetId) || document.getElementsByName(this.targetId)[0];
}
return this.target;
};
Expand Down

0 comments on commit d1052fa

Please sign in to comment.