Mark Florian
Mark Florian
I've encountered this issue as well, and have only just begun exploring solutions/workarounds. This issue pretty much breaks the whole point of asset hashing, since, to use your example, file...
I ended up writing a grunt task called [vermin](https://gist.github.com/markrian/aa185c5ec66232a38a68) which repeatedly runs filerev and usemin until the filenames stop changing, i.e., the 'brute-force' method. It does the job for me,...
> @backbone87 we should figure out a way to trigger a re-render when globals change, similar to what we did for args. @shilman I'm finding that decorators are passed stale...
For me, adding IE10 touch support was as simple as adding the CSS property "-ms-touch-action: none" to the elements that needed touch interaction. This works because [IE10 "fires mouse events...
Given that [IE10 fires mouse events for the primary contact](http://msdn.microsoft.com/en-gb/library/ie/hh673557%28v=vs.85%29.aspx#Mouse_compatibility), I don't see the need to rebind the MSPointerDown/Move/Up events, since equivalent mouse events are already going to get fired,...
halnesbitt, I was using a Lumia 920. Unfortunately I don't have access to **any** touch-enabled devices right now, but I've put together some super-simple tests, along with my predictions of...
I recently had to tackle this issue, particularly handling Windows Phone devices, so I forked a fork of a fork of this library :) https://github.com/markrian/jquery-ui-touch-punch-improved See the latest commits for...
@omipandey http://s.codepen.io/markrian/debug/EgykEr - that's a demo that uses my code, and it's all I tested with (it was all I needed to work). It's still not great, particularly on Windows...
@Nikoraito This gets you a bit closer to what you want. I think the whitespace before and after `:[before]` isn't getting matched in your example code. ``` match="""{ :[before]XYZ(:[params]); :[after]...
I suppose we could split up our rules a bit more, keeping rules for different file types in different files, e.g., instead of this: ``` rules/ └── path/ ├── path.haml ...