Created
June 3, 2014 08:07
-
-
Save dreucodi/b965affffe9849f59a14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.directive "infinitescroll", -> | |
scope: | |
value: '=ngModel' | |
link: (scope, element, attrs) -> | |
element.append scope.value | |
# template | |
%infinitescroll{'ng-model' => 'data'} | |
# controller | |
$scope.data = MyDataService.get_html() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment