Skip to content

Commit

Permalink
Removed unused default value/option in node-Middleware.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanaye committed Nov 23, 2016
1 parent 6002545 commit 9b6e157
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/node/Middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ define([
'./getElementsById',
'./parseToVirtual',
'./ServerEnv',
'./BrowserEnv'
], function (blocks, findPageScripts, executePageScripts, getElementsById, parseToVirtual, ServerEnv, BrowserEnv) {
'./BrowserEnv',
'../query/VirtualElement'
], function (blocks, findPageScripts, executePageScripts, getElementsById, parseToVirtual, ServerEnv, BrowserEnv, VirtualElement) {
var fs = require('fs');
var path = require('path');

Expand All @@ -28,7 +29,6 @@ define([

Middleware.Defaults = {
static: 'app',
blocksPath: 'node_modues/blocks/blocks.js',
cache: true,
baseTag: false
};
Expand Down

0 comments on commit 9b6e157

Please sign in to comment.