colthreepv/angular-media-player

Same directive names conflict with angular-strap

genbit opened this issue · 0 comments

AngularStrap has the same directive "throttle" and it causes conflicts, because these functions uses different signature:

and from angular-strap:

.constant('throttle', function (func, wait, options) {

and from angular-media-player:

.factory('throttle', ['$timeout', function ($timeout) {
  return function (delay, no_trailing, callback, debounce_mode) {