Greg Larrenaga

Results 59 comments of Greg Larrenaga

Easy way to do this, using some code from @salines ``` import striptags from 'striptags'; import { exec } from 'pell'; pellElement.onpaste = function(event) { event.stopPropagation(); event.preventDefault(); const clipboardData =...

@jaredreich FWIW, I am using @KhodorAmmar's code in a fork in production right now. The placeholder support works well.

I have an identical issue. Given that the 'autodetect and connect branches' is enabled. Given that the 'Create new backend environment for every connected branch' is enabled. New branches that...

@hloriana Great! Thanks for the quick reply. I can verify that a branch name less than 10 chars and without special chars works as I expected (the new branch gets...

@nonw Can you give some context to your issue? Do you know what Rivets is? When you wrote that issue, how were you connecting Rivets and CSP in your mind?

you can also bind while the html is still in memory in a document fragment then append when all the work is done. something like. ``` javascript function renderView(selectorForThisView, viewModel,...

@woozyking Good idea. Also, I was thinking about this more. If there are a TON of bindings inside of a massive iterable, then performance will always be an issue. That...

Hey Everyone in here, Very excited to say, A negative binder priority actually works! So this means we can implement an `rv-cloak` to prevent the FOUC. Here is a [gist](https://gist.github.com/Duder-onomy/43f580b65578a102ec05#file-rv-cloak-html)...

This is definitely an issue. I spent some time debugging and was only ever able to reproduce when putting computed on the prototype. This makes me think it could be...

I can confirm this behavior. I have also had to shim them to get it working with sep libraries: ``` javascript shim: { sightglass : { exports: 'sightglass' }, rivets...