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

angular-busy-button

v1.1.0

Published

interactive buttons for your application

Downloads

7

Readme

angular-busy-button

Interactive buttons for your app. Based on Luckasz's Watroba v-buttons module.

Demo

Getting started

Download the package:

npm install --save angular-busy-button
bower install --save angular-busy-button

Add the style and the script to your html page:

<link rel="stylesheet" type="text/css" href="angular-busy-button.css">
<script type="text/javascript" src="angular-busy-button.js"></script>

Add module name to your application dependencies:

angular.module('app', ['angular-busy-button']);

And now you are ready to use the busy-button attribute directive.

Basic usage

The simplest way to use it is by adding busy-button like so:

<button type="button" busy-button>Click Me</button>

The directive can take also a function that return a Promise, a $resource or a $http promise, like in this example:

<button type="button" busy-button="loadData()">Click Me</button>
$scope.loadData = function() {
  var deferred = $q.defer();
  $timeout(function() {
    deferred.resolve();
  }, 5000)
  return deferred.promise;
}

Also you can use various attributes to customize the button beheviour:

  • busy-text: The text to show during button progress
  • busy-after: The text to show after the button is pressed
  • busy-success: The text to show when the button function success
  • busy-error: The text to show when the button function fails
  • busy-complete-class: The class to apply after the button progress completes
  • busy-wait-time: The number of milliseconds to wait before click again - default 1000ms (1 sec)
  • busy-runtimes: The number of times which the button can be pressed/executed

Development

Install all the development dependencies.

npm install

There are two main actions:

grunt  // start the development server with livereload enabled on changes
grunt watch  // re-build automatically on javascript files changes
grunt build // create the distribution files by doing concat and uglify

Contributing

  1. Create an issue and describe your idea
  2. Fork the project (https://github.com/codekraft-studio/angular-busy-button/fork)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Publish the branch (git push origin my-new-feature)
  6. Create a new Pull Request