Greg Larrenaga

Results 59 comments of Greg Larrenaga

@ORESoftware In require.js, when shimming a dependency, the word you use to reference the dependency should be the same word defined in your paths. if you had this in your...

@mikepuerto Looks like in your template you are using the 'dot' notation to access the backbone collections internal models array. This is fine, but will not bind as backbone will...

@Leeds-eBooks Now we crack open the champaign and retire. Hah, sorta kidding. Before merge: - I think we should really stress test this thing. I have a ton of tests...

@Leeds-eBooks That sounds great. I will jump in if I see something. I also do not mind taking the lead on the stress test / including additional tests for memory...

@blikblum Do you think you can champion number 1 for the 0.9 release? If so, lets add it to the todo list. After the release we can look into memory...

@Leeds-eBooks Ya know. I keep going back and forth how I feel about these backwards incompatible changes. I have really never had any issues expressing my needs in rivets (except...

My 2 cents: jQuery is present throughout the code base: [utils](https://github.com/mikeric/rivets/blob/666c56a49b206bb63ad179478443f544894e318c/src/util.coffee) [binders](https://github.com/mikeric/rivets/blob/b673b239f6c9e5e7262bf14f54b2f87b8d34c1d9/src/binders.coffee) [views](https://github.com/mikeric/rivets/blob/57d0bc0bc2bb280e04f64a43e6f5c0107f5c1f50/src/view.coffee) If we were to make a flag to toggle the use of jQuery on and off, then...

Hi, I got your fiddle working: http://jsfiddle.net/98uhgtn8/ These are the important changes: In the component definition: ``` javascript rivets.components['control'] = { template: function() { return '{ option.value }'; }, initialize:...

@saiphcbk I spent around 4 hrs last night trying to figure out why your fiddle did not work. I thought maybe it had to do with the `new`'ing up of...

Yeah, Currently the each binder works nearly identical to this : http://bl.ocks.org/mbostock/3808218 If the length of the iterated item is shortened, it unbinds from the end, then rebinds all that...