Tim Molendijk

Results 10 issues of Tim Molendijk

When applying PIE to an element that is implicitly invisible due to `visibility: hidden` on a parent element, it will not work. Check out this example: http://jsbin.com/uxerul/1/edit Notice how all...

### Version v18.8.0 ### Platform Darwin Tims-MacBook-Pro.local 21.6.0 Darwin Kernel Version 21.6.0: Wed Aug 10 14:28:23 PDT 2022; root:xnu-8020.141.5~2/RELEASE_ARM64_T6000 arm64 ### Subsystem ECMAScript modules ### What steps will reproduce the...

esm
loaders

Because `$scope.$watchAsProperty()` returns a property that is constructed from a `Bacon.Bus`, it suffers from [this issue](https://github.com/baconjs/bacon.js/issues/304). Compare: ``` javascript // Note that `$scope.test` does not exist. var property = $scope.$watchAsProperty('test');...

Consider the following lines of code: ``` javascript $scope.test = 'initial'; var property = $scope.$watchAsProperty('test'); // Property will emit the scope variable's initial value property.onValue(function (value) { console.log("I will be...

I'm trying to use the library without setting any restrictions on buffer size (because if I set restrictions I will have to deal with buffers elsewhere in my code). I've...

``` javascript var connection = new easyXDM.Rpc({ remote: 'http://api.nouncy.eu/provider', lazy: true //

In this scenario: http://nouncy1.appspot.com/ Load the page in IE8 (that's the one I can confirm misbehaves) and adjust the width of the window. I cannot reproduce it in the "official"...

HTML like the following is obviously invalid, but unfortunately IE has a tendency of creating stuff like this (especially when pasting from external editors): ``` hey!!! hit me baby one...

I have a buildout like the following: ``` [buildout] extension = mr.developer parts = mypart [sources] mypkg = git ... ... [mypart] imgpath = ${buildout:directory}/src/mypkg/media/img ... ``` The problem with...

I really tried to understand what the purpose of blade is, but I failed. The README is all about details that I really don't need as long as I don't...