From 16d614d14d0d2e4bc2d2ed7c54a290b6421debb5 Mon Sep 17 00:00:00 2001 From: Tobias Reinwarth Date: Tue, 5 Mar 2019 13:46:53 +0100 Subject: [PATCH] coding style --- muk_web_utils/static/src/js/underscore.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/muk_web_utils/static/src/js/underscore.js b/muk_web_utils/static/src/js/underscore.js index 44368e9..5901f96 100644 --- a/muk_web_utils/static/src/js/underscore.js +++ b/muk_web_utils/static/src/js/underscore.js @@ -1,5 +1,5 @@ /********************************************************************************** -* +* * Copyright (C) 2018 MuK IT GmbH * * This program is free software: you can redistribute it and/or modify @@ -19,8 +19,8 @@ _.mixin({ memoizeDebounce: function(func, wait, options) { - wait = (typeof wait !== 'undefined') ? wait : 0; - options = (typeof options !== 'undefined') ? options : {}; + wait = (typeof wait !== 'undefined') ? wait : 0; + options = (typeof options !== 'undefined') ? options : {}; var mem = _.memoize(function() { return _.debounce(func, wait, options) }, options.resolver); @@ -32,8 +32,8 @@ _.mixin({ _.mixin({ memoizeThrottle: function(func, wait, options) { - wait = (typeof wait !== 'undefined') ? wait : 0; - options = (typeof options !== 'undefined') ? options : {}; + wait = (typeof wait !== 'undefined') ? wait : 0; + options = (typeof options !== 'undefined') ? options : {}; var mem = _.memoize(function() { return _.throttle(func, wait, options) }, options.resolver);