Skip to content

Commit

Permalink
lasso inject is no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
mlrawlings committed Aug 17, 2017
1 parent be9e601 commit a2d382d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 39 deletions.
4 changes: 1 addition & 3 deletions components/body/transformer.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module.exports = function(el, context) {
var refresh = context.createNodeForEl('browser-refresh');
var lasso = context.createNodeForEl('lasso-inject', {
name: context.builder.literal('body')
});
var lasso = context.createNodeForEl('lasso-body');
el.appendChild(refresh);
el.appendChild(lasso);
}
4 changes: 1 addition & 3 deletions components/head/transformer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
module.exports = function(el, context) {
var lasso = context.createNodeForEl('lasso-inject', {
name: context.builder.literal('head')
});
var lasso = context.createNodeForEl('lasso-head');
el.appendChild(lasso);
}
30 changes: 0 additions & 30 deletions components/lasso-inject/renderer.js

This file was deleted.

3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michael Rawlings <[email protected]>",
"license": "ISC",
"dependencies": {
Expand Down

0 comments on commit a2d382d

Please sign in to comment.