I am building a Chrome App using ENYO, partly because I actually need an app right now, and partly because I think ENYO will make a perfect quick build solution for the next time.
Anyway...
Problem 1: document.write error
Solution: use renderInto.
var app = new UMLEditor({name: "app"});
app.renderInto(document.body);
Problem 2: localstorage warning
Solution: refactor to use chrome.local.storage
Open: source/data/sources/localStorage.js
Change: e.localstorage to chrome.local.storage
Simple problems, simple solutions, but annoying to look up again next time.
I think ENYO will make a perfect quick build solution for the next time.create chrome extension
ReplyDelete