diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-27 15:42:55 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-27 15:42:55 +0200 |
commit | 999882e72327e06dd2fd346ca13eccb1c7e8781f (patch) | |
tree | 6a9ff7102871dfb4106d47e35c5d3031f787b90b /lib/output/modifiers/editHTMLElement.js | |
parent | d68dc82159555833b364a1571fff4b630c6a5bd4 (diff) | |
download | gitbook-999882e72327e06dd2fd346ca13eccb1c7e8781f.zip gitbook-999882e72327e06dd2fd346ca13eccb1c7e8781f.tar.gz gitbook-999882e72327e06dd2fd346ca13eccb1c7e8781f.tar.bz2 |
Add test for highlightCode html modifier
Diffstat (limited to 'lib/output/modifiers/editHTMLElement.js')
-rw-r--r-- | lib/output/modifiers/editHTMLElement.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/output/modifiers/editHTMLElement.js b/lib/output/modifiers/editHTMLElement.js index 9897dcc..755598e 100644 --- a/lib/output/modifiers/editHTMLElement.js +++ b/lib/output/modifiers/editHTMLElement.js @@ -8,7 +8,7 @@ function editHTMLElement($, selector, fn) { return Promise.forEach($elements, function(el) { var $el = $(el); - fn($el); + return fn($el); }); } |