From 552ce0f204197c757176050e5bdbb93571d4b815 Mon Sep 17 00:00:00 2001 From: Flavian Jacquot Date: Thu, 18 Jan 2018 11:53:41 +0100 Subject: [PATCH] corrects menu import and css import (hack by adding node_modules prefix, should be done by build) --- index.ejs | 2 +- package.json | 2 +- src/index.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.ejs b/index.ejs index 8545bd3..c12721c 100644 --- a/index.ejs +++ b/index.ejs @@ -4,7 +4,7 @@ - + TUIOSamples diff --git a/package.json b/package.json index 320c31d..a179fbf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tuiosamples", - "version": "1.1.0", + "version": "1.3.0", "scripts": { "devMode": "node initTUIOManagerDevMode.js", "dist": "node prod-webpack-compiler.js", diff --git a/src/index.js b/src/index.js index fbaa1d2..6f610d5 100644 --- a/src/index.js +++ b/src/index.js @@ -10,7 +10,7 @@ import $ from 'jquery/dist/jquery.min'; // Import TUIOManager import TUIOManager from 'tuiomanager/core/TUIOManager'; -import { buildMenu } from './menu'; +import buildMenu from './menu'; /** TUIOManager starter **/ const tuioManager = new TUIOManager();