UNPKG

electorrent

Version:

An Electron/Node/AngularJS remote client app for uTorrent server

14 lines (11 loc) 330 B
angular.module("torrentApp").directive('readyBroadcast', ['$rootScope', '$timeout', function($rootScope, $timeout) { return { restrict: 'A', link: link }; function link(/*scope, element, attr*/){ $timeout(function(){ $rootScope.$emit('ready'); }); } }]);