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-media-events

v2.0.0

Published

angular directives for media events

Downloads

9

Readme

Angular Media Events Build Status

This library should introduce angular directives that respond to events on media objects.

Sauce Test Status

Please note, the SauceLabs badge will show results for all tests run, not just master. If the build status is "passing" on the master branch, you can be sure that all these browser versions are passing.

**To Rollup from Webpack**

v2 will use rollup.js to do packaging instead of webpack. This is due to the fact that webpack is better suited for application building, and rollup is better suited for library/module building. Please let me know if it doesn't work in any way.

Supported Events

This list should grow as time goes on.

Setup

Installing

Bower

bower install angular-media-events --save

NPM

npm install angular-media-events --save

Including

<script src="/bower_components/angular-media-events/dist/media-events.js"></script>
// or
import angularMediaEvents from 'angular-media-events';

Using in Angular

// using script include
angular.module('myApp', ['media-events']);
angular.module('myApp', [window.angularMediaEvents]);

// or using import
angular.module('myApp', [angularMediaEvents]);

Events

loadedmetadata

  • available params (in template):
    • anything in the scope
    • $event (jqlite/jQuery Event object)
    • attrs
      • width
      • height
    • Note: some videos do not return these attributes. I believe this is due to how it is encoded/what codec is used
  <video ng-src="..." on-loaded-metadata="someFunction($event, attrs)" />

progress

  • available params (in template):
    • anything in the scope
    • $event (jqlite/jQuery Event object)
    • attrs
      • buffered
  <video ng-src="..." on-progress="someFunction($event, attrs)" />

play (on-play)

  • available params (in template):
    • anything in the scope
    • $event (jqlite/jQuery Event object)
  <video ng-src="..." on-play="someFunction($event)" />

pause (on-pause)

  • available params (in template):
    • anything in the scope
    • $event (jqlite/jQuery Event object)
  <video ng-src="..." on-pause="someFunction($event)" />

ended (on-ended)

  • available params (in template):
    • anything in the scope
    • $event (jqlite/jQuery Event object)
  <video ng-src="..." on-ended="someFunction($event)" />

Contributing

Please feel free to contribute. Checkout the guidelines. I'm pretty responsive, if I say so myself, so hit me up.