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 { create, tsx } from '@dojo/framework/core/vdom'; | |
| import theme from '@dojo/framework/core/middleware/theme'; | |
| import icache from '@dojo/framework/core/middleware/icache'; | |
| import drag from '@dojo/framework/core/middleware/drag'; | |
| import * as css from './SplitPane.m.css'; | |
| import { RenderResult } from '@dojo/framework/core/interfaces'; | |
| export interface SplitPaneProperties { | |
| reverse?: boolean; | |
| initialWidth?: number; |
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 { create, tsx } from '@dojo/framework/core/vdom'; | |
| import theme from '@dojo/framework/core/middleware/theme'; | |
| import breakpoint from '@dojo/framework/core/middleware/breakpoint'; | |
| import icache from '@dojo/framework/core/middleware/icache'; | |
| import { Header } from '@dojo/widgets/header'; | |
| import { SlidePane } from '@dojo/widgets/slide-pane'; | |
| import { Icon } from '@dojo/widgets/icon'; | |
| import * as css from './CollapsingHeader.m.css'; | |
| const factory = create({ theme, breakpoint, icache }); |
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
| cd ./coreaudio | |
| npm install | |
| npm run build | |
| cd ../player | |
| npm install | |
| npm run element | |
| cd ../configs | |
| npm install | |
| npm run jlg-config | |
| npm run woogle-config |
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 { WidgetBase } from '@dojo/widget-core/WidgetBase'; | |
| import { WidgetProperties } from '@dojo/widget-core/interfaces'; | |
| import { v } from '@dojo/widget-core/d'; | |
| export interface LinkDetails { | |
| label: string; | |
| href: string; | |
| } | |
| export interface HeaderProperties extends WidgetProperties { |
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
| // Place your settings in this file to overwrite the default settings | |
| { | |
| "editor.renderWhitespace": true, | |
| "files.autoSave": "onFocusChange", | |
| "files.trimTrailingWhitespace": true, | |
| "editor.fontSize": 15, | |
| "editor.lineHeight": 20, | |
| "editor.insertSpaces": false, | |
| "typescript.tsdk": "./node_modules/typescript/lib", | |
| "editor.fontFamily": "Operator Mono", |
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
| define({ | |
| functionalSuites: [ | |
| 'banners' | |
| ], | |
| tunnel: 'NullTunnel', | |
| tunnelOptions: { | |
| hostname: 'localhost', | |
| port: '4444' | |
| }, | |
| environments: [ |
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"; | |
| (function () { | |
| var EXECUTING = 'executing'; | |
| var ABORT_EXECUTION = {}; | |
| // | |
| // loader state data | |
| // | |
| // AMD baseUrl config | |
| var baseUrl = './'; | |
| // hash: (mid | url)-->(function | string) |
NewerOlder