Rado Kirov

Results 42 comments of Rado Kirov

For simplicity, it allows 1:1 mapping between the files you write and what you load in the browser. Otherwise, I have to bring in a bundling tool into this picture...

To clarify our quick started guide at angular.io - https://angular.io/docs/js/latest/quickstart.html does not need babel/traceur, by virtue of using the angular2.dev.js bundle. All that is needed is something to transpile your...

@johnjelinek No matter how you declare and what language the modules are written in, they have to be put together. Here are the options: - (static) bundle the modules by...

This was just the fastest way to get something to show in your browsers so you can experiment with the APIs. Also it has the added benefit of supporting a...

Try rewriting your urls to relative - `templateUrl: 'footer.html'`. The intention is for templateUrls when relative to be relative to the current `.dart` file. Behind the scenes we would transform...

fixed in dart platform https://codereview.chromium.org/929353004. Will double check when it makes it into the dev build.

I just added a wiki page explaining our transformation process https://github.com/angular/angular.dart/wiki/The-Angular-Transformer Sounds like you are already aware this is a problem with the expression extractor transformer The workaround for now...

An even easier solution would be to use `templateUrl: packages/my_package/components/templates.html` which would satisfy both the transformer and `pub serve`

@matsko, I don't think your PR really solves the issue. After patching it and hitting `reset` twice, I still get the null value. As I see it the issue is...

Maybe removing the `try-catch` around the `converter.parse` would be better as it would make the authors of converters realize the expected API faster.