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
| * The version of SDB client (2.2.83) is not same with that of SDB server (2.3.0). | |
| It may cause version compatibility problems. | |
| It is recommended to use SDB server with version 2.2.83. * | |
| * The version of SDB client (2.2.83) is not same with that of SDB server (2.3.0). | |
| It may cause version compatibility problems. | |
| It is recommended to use SDB server with version 2.2.83. * | |
| [Version] | |
| Model=Tizen3/TV; | |
| Build=latest; | |
| Release=latest; |
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
| Allegro.createClient(options, function(err, client) { | |
| client.doGetItemsList(); | |
| }); | |
| // [Error: Sender: Element '{https://webapi.allegro.pl/service.php}object': This element is not expected. Expected is ( {https://webapi.allegro.pl/service.php}item ).] |
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 PlayerService from "./player/services/player.service"; | |
| import VideoContentService from "./player/services/video-content.service"; | |
| import TimelineService from "./factory/services/timeline.service"; | |
| import ContentModel from "./factory/models/content.model"; | |
| import MessageScheduleModel from "./factory/models/message-schedule.model"; | |
| import ScheduleModel from "./factory/models/schedule.model"; | |
| import MessageController from "./player/controllers/message.controller"; |
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
| function ScheduleManager() { | |
| function start(intervalTime) { | |
| intervalTime = intervalTime || 1000; | |
| _tickFn(); | |
| _interval = window.setInterval(_tickFn, intervalTime); | |
| } | |
| } |
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
| devServer: { | |
| inline: true, | |
| contentBase: 'dist/', | |
| port: 8085 | |
| } |
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; |
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
| 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
| @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
| "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 { |