Christopher Schuster

Results 15 issues of Christopher Schuster

This error does not seem critical but it shows up when initializing the optimized cache. It seems that it relies on a file `babel-core/browser.js` which is missing from the latest...

It is possible to load LivelyKernel as NodeJS module with ``` var lively = require('livelykernel'); ``` However, this requires `jsdom` and `xmlhttprequest` modules and a correct setup of the global...

The default code generation for an AST that calls a function node is in broken. In the following example... ``` javascript var src = "(function() { return 23; })()"; var...

The `removeAfterUpdate` property of a connection is used to make a connection fire only once. The problem is that the current implementation remove the attribute connection for that source/target combination...

The width of the text node does not compensate correctly for padding. #### Example Code ``` javascript var str = 'hmmmmmmmmmmm'; var txt = new lively.morphic.Text(lively.rect(20,10,60,50), str); txt.openInWorld(); txt.focus(); txt.setPadding(lively.Rectangle.inset(5,...