npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tab-sdk-mrdx

v0.0.8

Published

A custom scrollbar written in pure AngularJS

Downloads

41

Readme

tab-sdk-mrdx

A custom scrollbar written in pure AngularJS.

Works with the mouse and on touch screen.

Tired of using jquery for a stupid scrollbar? well, this directive is just for you.

Usage

  1. Add tab-sdk-mrdx.min.js to you main file (index.html)

you can download this by:

In your web page:

<script src="angular.js"></script>
<script src="dist/tab-sdk-mrdx.min.js"></script>
<link rel="stylesheet" href="dist/tab-sdk-mrdx.min.css" />
  1. Set ngScrollbar as a dependency in your module
var myapp = angular.module("myapp", ["ngScrollbar"]);
  1. Add tab-sdk-mrdx directive to the wanted element, example:
<div class="scrollme" tab-sdk-mrdx>....</div>

Rebuild the scrollbar

In case you need to rebuild the scrollbar, you may tell tab-sdk-mrdx to rebuild it for you by broadcasting an event. It's useful to use this option when the size or visibility of the container is dynamic and during the link phase the size can't be determined.

<div class="scrollme" tab-sdk-mrdx rebuild-on="rebuild:me">....</div>
// rebuild the scrollbar
$scope.$broadcast("rebuild:me");

In case you need to rebuild the scrollbar on every window's resize, you may use "rebuild-on-resize" option.

<div class="scrollme" tab-sdk-mrdx rebuild-on-resize>....</div>

In case you need to stick content to bottom (chat or something) use "bottom" option.

<div class="scrollme" tab-sdk-mrdx bottom>....</div>

Events and Flags

On rebuilding the scrollbar you can get notified by 2 events

$scope.$on("scrollbar.show", function () {
  console.log("Scrollbar show");
});
$scope.$on("scrollbar.hide", function () {
  console.log("Scrollbar hide");
});

Or you can use "is-bar-shown" option. It should be read-only

<div class="scrollme" tab-sdk-mrdx is-bar-shown="flag">....</div>
<div>Bar shown: {{flag}}</div>

Examples

See the example in the respository. example/index.html

Bitdeli Badge