This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| import React from 'react'; | |
| export default class Czas extends React.Component { | |
| static propTypes = { | |
| start: React.PropTypes.number.isRequired, | |
| }; | |
| render() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| import React from "react"; | |
| import Czas from 'absolvent/React/Czas' | |
| function padNumbers(number) { | |
| return String(100 + number).substr(1, 2); | |
| } | |
| export default class Timer extends React.Component { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| import React from "react"; | |
| import Czas from 'absolvent/React/Czas' | |
| function padNumbers(number) { | |
| return String(100 + number).substr(1, 2); | |
| } | |
| export default class Timer extends React.Component { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| import React from "react"; | |
| import Czas from 'absolvent/React/Czas' | |
| function padNumbers(number) { | |
| return String(100 + number).substr(1, 2); | |
| } | |
| export default class Timer extends React.Component { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| import React from "react"; | |
| import Czas from 'absolvent/React/Czas' | |
| function padNumbers(number) { | |
| return String(100 + number).substr(1, 2); | |
| } | |
| export default class Timer extends React.Component { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
| img[src*=".svg"], svg { | |
| width: 100%; | |
| height: 100%; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if(navigator.connection && | |
| navigator.connection.type === 'cellular' && | |
| navigator.connection.downlinkMax <= 0.115) { | |
| // Notify your service to indicate that you might be affected by this restriction. | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import WebApis from './webapis' | |
| WebApis; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ScheduleFactory from "./factory/services/schedule-factory.service"; | |
| import ScheduleManager from "./schedule-manager.service"; | |
| function SampleApp() { | |
| var appElement; | |
| function newScheduleHandler(pEvent) { | |
| var scheduleModel; | |
| Logger.info("New Schedule"); | |
| if (!pEvent.data) { | |
| return; |
OlderNewer