Sergey Protko

Results 66 comments of Sergey Protko

As far i know, you can't do that with `$routeSegmentProvider`. But since `$routeSegmentProvider`'s `when` method uses `$routeProvider`'s one, you can just use `$routeProvider` for route definition. ``` javascript $routeSegmentProvider.when('/section1', 's1.home')...

There is no big problems with rewriting all filters to GLSL and use as another driver with Canvas fallback.

Also there is [glfx](http://evanw.github.io/glfx.js/).

Just checked, glfx already have implementation for some of the filters: - brightness - contrast - noise - sepia - vibrance - vignette - exposure - curves (need to check...

I would like to help with ES6 rewrite. But i need to know, which branch should be considered as feature version? Any roadmap? What i suggest is divide this work...

@rwwagner90 maybe: ``` /* recommended */ // app.module.js import { someService } from './some.service'; angular .module('app', ['ngRoute']) // .controller... should not be recommended .service('someService', someService); // since this is service,...

Maybe instead of inheritance (`extends` keyword) provide something like aliasing? ``` type Email as String ```

any news on this? approach with transclusion seems good to me, i don't see any disadvantages for it.

@brianium ``` php describe('Some spec', function () { $this->value = 'initial value'; context('Inner context 1', function () { $this->value = 'overwritten'; it('should use overwritten value', function() { expect($this->value)->to->be->equal('overwritten'); }); });...

@brianium thanks for answers. I had a pet project which adds jasmine/rspec like specs to phpspec and I used something like this to make scopes work: https://gist.github.com/fesor/09c91090cef3da0da0e143cca3ae2d62 rootScope is outside...