Giter VIP home page Giter VIP logo

angular-scroll-pane's Introduction

angular-scroll-pane

Build Status

AngularJS directive to use jScrollPane https://github.com/vitch/jScrollPane

How to install

  • With bower
    • bower install --save angular-scroll-pane
  • Manually
    • dist/angular-jscrollpane.min.js

What to include

Make sure you are including jQuery, Angular and jScrollPane along with angular-scroll-pane.

How to use this module

angular.module("app", ['ngJScrollPane']);
angular.module("app").controller("MyCtrl", function () {
	$scope.paneConfig = {
		verticalDragMinHeight: 40
	}
});

<html>
	<body ng-app="app">
		<div ng-controller="MyCtrl">
			<div scroll-pane scroll-config="paneConfig" id="myScrollPane">
				My content needing a scroll pane
			</div>
		</div>
	</body>
</html>

Don't forget to specify an id (or an attribute 'scroll-name') for your scroll pane, otherwise it won't be working

Always scroll to top

If need just specify atribute scroll-always-top. For example, good thing for custom autocomplete list.

<input type="text" ng-model="someText" />
<div scroll-pane scroll-config="paneConfig" id="myScrollPane" scroll-always-top="{{someText}}">
    <div ng-repeat="item in items track by $index">
        <span>{{item}}</span>
    </div>            
</div>

Reinitialize the pane

If you want to reinitialize the pane, you can broadcast reinit-pane with the ID of the DOM Element.

Contributing

If you wish to contribute, fork this repository.

grunt build builds the module.

License

The MIT License (MIT)

Copyright (c) 2015 Geoffrey Bauduin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

angular-scroll-pane's People

Contributors

geoffreybauduin avatar skiminock avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

angular-scroll-pane's Issues

$digest already in progress

Error: [$rootScope:inprog] $digest already in progress
http://errors.angularjs.org/1.2.26/$rootScope/inprog?p0=%24digest
at angular.js:78
at beginPhase (angular.js:13010)
at Scope.$apply (angular.js:12799)
at angular-jscrollpane.min.js:2
at Scope.$broadcast (angular.js:12981)
at main.js:402
at wrappedCallback (angular.js:11573)
at wrappedCallback (angular.js:11573)
at angular.js:11659
at Scope.$eval (angular.js:12702)

$scope.$broadcast('reinit-pane',"id of the scroll pane");

bower.json dependency for angular change

This technically is a bug belongs to bower but I would like to ask the Arthur to change the dependency for angular from "angularjs" to "angular", otherwise bower will download and load two identical angular js library (they just named differently) into the bower_components and since I use gulp to automate adding the library into index.html angular are being loaded twice.

using directive in ng-repeat

I'm having problem using this directive within ng-repeat. It only works the first time in ng-repeat? Probably it has something to do with the fact that is is not unique to all elements. I've tried to create unique ID as id="Div1_{{$index}}" but this doesn't work. Any suggestions how to make it work within ng-repeat?
capture

capture1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.