valerio
valerio
RC1 it's out just from today, but opening an issue will help keep tracking of progress :smiley: http://twitter.github.io/bootstrap/
Would be very easy to implement a flag on the `` tag to include an external bootstrap CSS (from http://www.bootstrapcdn.com/ )
Really great project, i was just wondering if you could put a `dist/` folder with the latest built commit. Would be very useful for people experimenting with the binary, or...
As an experiment I tried to add typescript to the webpack pipeline, it seems I got it working easily, but I haven't tested production builds and other details yet. Would...
Is it planned? Do you need help to produce it? It could be useful since ngrx (redux for angular2) and their siblings are all written in typescript
Is throttling on `timeupdate` (the only recurring event) really useful? I put it in the first place to limit the Angularjs scope $applies, but it gets triggered few times per...
Automatized tests are run on firefox 24.x Extended Support Release, but on Firefox 31.x this test fails. I have no idea why, [code here](https://github.com/mrgamer/angular-media-player/blob/master/test/playback.js#L167-L189) **edit**: more tests fails with firefox...
In certain cases I want to extract functions leveraging containers away from component files, for example ```tsx import { longFunction } from './state-helpers' const Builder: React.FC = () => {...
Let's imagine I have components with similar logic, example: ```typescript import React from 'react' import { AppContainer } from '../container/app' import "..." const FileListComponent: FC = () => { const...