diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-04-23 21:10:53 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-04-23 21:10:53 +0200 |
commit | a3df6c6f0c1068762f9d48cdff97ab5d4c583082 (patch) | |
tree | e43d732f7676430d0075814e11fcb4372803e9da /lib/output/modifiers/htmlTransform.js | |
parent | e1fa977b5b1b3c03790de6e2c21ee39ba55d9555 (diff) | |
download | gitbook-a3df6c6f0c1068762f9d48cdff97ab5d4c583082.zip gitbook-a3df6c6f0c1068762f9d48cdff97ab5d4c583082.tar.gz gitbook-a3df6c6f0c1068762f9d48cdff97ab5d4c583082.tar.bz2 |
Add assets inliner modifier for HTML
Diffstat (limited to 'lib/output/modifiers/htmlTransform.js')
-rw-r--r-- | lib/output/modifiers/htmlTransform.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/output/modifiers/htmlTransform.js b/lib/output/modifiers/htmlTransform.js deleted file mode 100644 index 528b08d..0000000 --- a/lib/output/modifiers/htmlTransform.js +++ /dev/null @@ -1,16 +0,0 @@ -var Promise = require('../../utils/promise'); - -/** - - -*/ -function transformTags() { - var $elements = $(query); - - return Promise.serie($elements, function(el) { - var $el = that.$(el); - return fn.call(that, $el); - }); -} - -module.exports = transformTags; |