pike

Results 28 comments of pike

Yes, I was actually looking for a polyfill that handled the latter case - webkitEnterFullscreen and not the specs. Older ipads still have it. So I thought I'd drop a...

PS .. thanks for the links. fyi webkitbeginfullscreen and webkitendfullscreen trigger on the video element, and don't seem to propagate to the body. but its better than resize :-)

follow https://github.com/sass/node-sass/issues/2685 for updates on libsass 3.6

Or more finegrained, if your server runs on 8080 ``` - run: kill $(lsof -t -i :8080) ```

This is imho a real 'documentation bug' - here https://github.com/cypress-io/github-action#start-server it says > the server will run in the background and will shut down after tests complete and > Note:...

@MikeMcC399 - no, I'm killing the server now and that works. I didn't read the note until I found out the first line was not true :-) So it's just...

I'm not prinzhorn, but I had the same issue; I ended up rewriting the attributes dynamically (using jquery) before calling refresh(). That worked fine. I had to 'chain' the refresh...

My question about this was here .. https://github.com/Prinzhorn/skrollr/issues/387 Let me see if I can paste code here: Suppose you want to change the attributes on an element called $elm: ```...

That would also remove any other data- attributes, but if you dont care, thats ok. Mine checks for data-xxx where xxx is numeric.

Oops, yes, forgot to mention. it seems <a data-123="foobar"> did not always return as $a.data('123') in jquery. Which I figured was a jQuery issue (after all, '123' is a weird...