diff --git a/index.html b/index.html index e35094a..012fac2 100644 --- a/index.html +++ b/index.html @@ -215,7 +215,7 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel -
+
@@ -270,7 +270,7 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel
+ --> diff --git a/js/filters.js b/js/filters.js index 2e4d312..3ca8297 100644 --- a/js/filters.js +++ b/js/filters.js @@ -25,7 +25,7 @@ weechat.filter('toArray', function () { }); weechat.filter('irclinky', ['$filter', function($filter) { - return function(text, target) { + return function(text) { if (!text) { return text; } @@ -64,9 +64,6 @@ weechat.filter('DOMfilter', ['$filter', '$sce', function($filter, $sce) { return text; } - // hacky way to pass an extra argument without using .apply, which - // would require assembling an argument array. PERFORMANCE!!! - var extraArgument = (arguments.length > 2) ? arguments[2] : null; var filterFunction = $filter(filter); var el = document.createElement('div'); el.innerHTML = text; @@ -74,7 +71,7 @@ weechat.filter('DOMfilter', ['$filter', '$sce', function($filter, $sce) { // Recursive DOM-walking function applying the filter to the text nodes var process = function(node) { if (node.nodeType === 3) { // text node - var value = filterFunction(node.nodeValue, extraArgument); + var value = filterFunction(node.nodeValue); if (value !== node.nodeValue) { // we changed something. create a new node to replace the current one // we could also only add its children but that would probably incur