Lint the router files

This commit is contained in:
Pierre-Yves Gerardy 2016-09-03 00:32:12 +02:00
parent 0539fc651d
commit a1131eb4f2
2 changed files with 6 additions and 6 deletions

View file

@ -18,9 +18,9 @@ module.exports = function($window) {
var asyncId
function debounceAsync(f) {
return function(){
return function() {
if (asyncId != null) return
asyncId = callAsync(function(){
asyncId = callAsync(function() {
asyncId = null
f()
})