├── .gitignore ├── dist ├── bundle.js ├── bundle.js.LICENSE.txt └── index.html ├── package.json ├── src ├── App.js ├── actions │ └── actions.js ├── components │ ├── ColMeasures.jsx │ ├── ColSmpte.jsx │ ├── MeasuresDisplay.jsx │ ├── RowMeasures.jsx │ └── UserSmpteDisplay.jsx ├── constants │ └── actionTypes.js ├── containers │ ├── GuideContainer.jsx │ ├── HeaderContainer.jsx │ ├── MainContainer.jsx │ ├── ToolContainer.jsx │ └── UserParameters.jsx ├── index.html ├── index.js ├── reducers │ ├── index.js │ └── markersReducer.js ├── store.js ├── styles.scss └── utils │ └── calculator.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/App.js -------------------------------------------------------------------------------- /src/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/actions/actions.js -------------------------------------------------------------------------------- /src/components/ColMeasures.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/components/ColMeasures.jsx -------------------------------------------------------------------------------- /src/components/ColSmpte.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/components/ColSmpte.jsx -------------------------------------------------------------------------------- /src/components/MeasuresDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/components/MeasuresDisplay.jsx -------------------------------------------------------------------------------- /src/components/RowMeasures.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/components/RowMeasures.jsx -------------------------------------------------------------------------------- /src/components/UserSmpteDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/components/UserSmpteDisplay.jsx -------------------------------------------------------------------------------- /src/constants/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/constants/actionTypes.js -------------------------------------------------------------------------------- /src/containers/GuideContainer.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/HeaderContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/containers/HeaderContainer.jsx -------------------------------------------------------------------------------- /src/containers/MainContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/containers/MainContainer.jsx -------------------------------------------------------------------------------- /src/containers/ToolContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/containers/ToolContainer.jsx -------------------------------------------------------------------------------- /src/containers/UserParameters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/containers/UserParameters.jsx -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/markersReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/reducers/markersReducer.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/store.js -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/utils/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/src/utils/calculator.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastairsounds/SMPTE-Spot/HEAD/webpack.config.js --------------------------------------------------------------------------------