Martin Grandrath
Martin Grandrath
I think this solves the race condition with socket.io. I basically did two things: - Make `createSocket` asynchronous so that it ensures that the new socket is actually connected. This...
I wired up the font loading events to PhantomJS. - The callback `onInitialized` is called _before_ the page is loaded (especially before the IIFE with the TypeKit boilerplate is executed)....
It seems that you can't call `phantom.exit()` twice in a row.
This change preserves the execution context in functions passed to async.beforeEach etc. so that the following code works: ``` javascript describe("something", function () { var async = new Async(this); async.beforeEach(function...
The condition of the `while` loop was incorrect. Also when you replace the default value for `to` you can get rid of the `if` condition.
I played around with your code some more. I hoped that I could use some more of Angular's binding magic but that didn't work out very well. If there is...
I think you need to reconsider the interface of the `configurationField` directive. Passing in the value object directly won't work as it has no way of consuming the change. So...