This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Adblock Plus 2.0] | |
! Version: | |
! Title: My Personal Filter List | |
! Last modified: | |
! Expires: 7 days (update frequency) | |
! Homepage: | |
! | |
! block home page videos | |
m.youtube.com##.tab-content[tab-title="Home"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The following code tests functionality for the following angular implementation of debounce: | |
http://stackoverflow.com/a/13320016/2415971 | |
app.factory('debounce', ['$timeout','$q', function($timeout, $q) { | |
return function debounce(func, wait, immediate) { | |
var timeout; | |
var deferred = $q.defer(); | |
return function() { | |
var context = this, args = arguments; |