Skip to content

Commit

Permalink
fix(scroll): <scroll> is now registered with $ionicScrollDelegate
Browse files Browse the repository at this point in the history
This is just a whitespace change with a commit attached to it so that we
can have the fix appear in the changelog.

The actual changes are in c119498.
  • Loading branch information
ajoslin committed Feb 11, 2014
1 parent c119498 commit 2c7ce76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/ext/angular/src/directive/ionicScroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ angular.module('ionic.ui.scroll', [])
};

function prelink($scope, $element, $attr) {
var scrollView, scrollCtrl, sc = $element[0].children[0];
var scrollView, scrollCtrl,
sc = $element[0].children[0];

if(attr.padding == "true") {
sc.classList.add('padding');
Expand Down

0 comments on commit 2c7ce76

Please sign in to comment.