angular-slimscroll
v1.0.0
Published
Angular JS implementation of jQuery-slimScroll without JQuery Dependencies
Downloads
201
Maintainers
Readme
angular-slimScroll
Angular JS implementation of jQuery-slimScroll without JQuery Dependencies
ngSlimscroll
AngularJS implementation of slimScroll
Originally developed by Piotr Rochala (http://rocha.la) jQuery version
Install
With bower:
$ bower install angular-slimScroll
With npm
$ npm install angular-slimScroll
Example Configuration (bower)
<!DOCTYPE html>
<html ng-app="app">
<body>
<div slim-scroll height="300px">
Content ...
</div>
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script>
<script type="text/javascript" src="bower_components/angular-slimScroll/angular-slimScroll.min.js"></script>
<script type="text/javascript">
var app = angular.module('app', [
'ngSlimScroll'
]);</script>
</body>
</html>