mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2024-12-05 02:21:31 +00:00
Remove copyright headers
This commit is contained in:
parent
26b1deadf5
commit
97b911689b
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { RouterModule, Routes } from '@angular/router';
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
|
|
||||||
|
@ -1,4 +1 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { Title } from '@angular/platform-browser';
|
import { Title } from '@angular/platform-browser';
|
||||||
import { config } from './config';
|
import { config } from './config';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { HttpClientModule } from '@angular/common/http';
|
import { HttpClientModule } from '@angular/common/http';
|
||||||
import { FormsModule } from '@angular/forms';
|
import { FormsModule } from '@angular/forms';
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
documentTitle: 'Avatao Tutorials',
|
documentTitle: 'Avatao Tutorials',
|
||||||
dashboard: {
|
dashboard: {
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<textarea [(ngModel)]="console_content"
|
<textarea [(ngModel)]="console_content"
|
||||||
#tfwconsole
|
#tfwconsole
|
||||||
[scrollTop]="tfwconsole.scrollHeight"
|
[scrollTop]="tfwconsole.scrollHeight"
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import "../../assets/scss/variables.scss";
|
@import "../../assets/scss/variables.scss";
|
||||||
|
|
||||||
.tfw-console {
|
.tfw-console {
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { WebSocketService } from '../services/websocket.service';
|
import { WebSocketService } from '../services/websocket.service';
|
||||||
import { WebSocketMessage } from '../message-types/websocket-message';
|
import { WebSocketMessage } from '../message-types/websocket-message';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<div [attr.class]="layout">
|
<div [attr.class]="layout">
|
||||||
<div class="tfw-grid-main-components">
|
<div class="tfw-grid-main-components">
|
||||||
<div class="tfw-header"><app-header></app-header></div>
|
<div class="tfw-header"><app-header></app-header></div>
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import "../../assets/scss/variables.scss";
|
@import "../../assets/scss/variables.scss";
|
||||||
@import "../../assets/scss/mixins/layout.scss";
|
@import "../../assets/scss/mixins/layout.scss";
|
||||||
@import "../../assets/scss/mixins/scrollbar";
|
@import "../../assets/scss/mixins/scrollbar";
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Component, OnDestroy, OnInit, ChangeDetectorRef, ElementRef, ViewChild } from '@angular/core';
|
import { Component, OnDestroy, OnInit, ChangeDetectorRef, ElementRef, ViewChild } from '@angular/core';
|
||||||
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
||||||
import { Subscription } from 'rxjs';
|
import { Subscription } from 'rxjs';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<div class="tfw-grid-navbar tao-grid-center-center">
|
<div class="tfw-grid-navbar tao-grid-center-center">
|
||||||
<img src="images/avatao_logo.svg" routerLink="/" class="tao-grid-center-left tfw-company-logo" alt="">
|
<img src="images/avatao_logo.svg" routerLink="/" class="tao-grid-center-left tfw-company-logo" alt="">
|
||||||
<span class="tfw-header-title">Tutorials</span>
|
<span class="tfw-header-title">Tutorials</span>
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import "../../assets/scss/variables.scss";
|
@import "../../assets/scss/variables.scss";
|
||||||
|
|
||||||
.tfw-header-title {
|
.tfw-header-title {
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<div class="tfw-grid-ide-statusbar">
|
<div class="tfw-grid-ide-statusbar">
|
||||||
<div class="btn-group btn-group-sm flex-wrap tao-grid-center-left">
|
<div class="btn-group btn-group-sm flex-wrap tao-grid-center-left">
|
||||||
<button *ngFor="let file of files"
|
<button *ngFor="let file of files"
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import "../../assets/scss/variables.scss";
|
@import "../../assets/scss/variables.scss";
|
||||||
|
|
||||||
.tfw-grid-ide-statusbar {
|
.tfw-grid-ide-statusbar {
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { ChangeDetectorRef, Component, EventEmitter, OnInit, Output } from '@angular/core';
|
import { ChangeDetectorRef, Component, EventEmitter, OnInit, Output } from '@angular/core';
|
||||||
|
|
||||||
import { WebSocketService } from '../services/websocket.service';
|
import { WebSocketService } from '../services/websocket.service';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
export const LanguageMap: { [extension: string]: string; } = {
|
export const LanguageMap: { [extension: string]: string; } = {
|
||||||
bat: 'bat',
|
bat: 'bat',
|
||||||
clje: 'clojure',
|
clje: 'clojure',
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { WebSocketMessage } from './websocket-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
export interface MessageConfig extends WebSocketMessage {
|
export interface MessageConfig extends WebSocketMessage {
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { SetValueCommand } from './set-value-command';
|
import { SetValueCommand } from './set-value-command';
|
||||||
import { WebSocketMessage } from './websocket-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { SetValueCommand } from './set-value-command';
|
import { SetValueCommand } from './set-value-command';
|
||||||
import { WebSocketMessage } from './websocket-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { WebSocketMessage } from './websocket-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
export interface FSMUpdateMessage extends WebSocketMessage {
|
export interface FSMUpdateMessage extends WebSocketMessage {
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { WebSocketMessage } from './websocket-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
export interface IDEMessage extends WebSocketMessage {
|
export interface IDEMessage extends WebSocketMessage {
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
export interface LogMessage {
|
export interface LogMessage {
|
||||||
stdout: string;
|
stdout: string;
|
||||||
stderr: string;
|
stderr: string;
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { LogMessage } from './log-message';
|
import { LogMessage } from './log-message';
|
||||||
import { WebSocketMessage } from './websocket-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { LogMessage } from './log-message';
|
import { LogMessage } from './log-message';
|
||||||
import { WebSocketMessage } from './websocket-message';
|
import { WebSocketMessage } from './websocket-message';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
export interface SetValueCommand<T> {
|
export interface SetValueCommand<T> {
|
||||||
value: T;
|
value: T;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
export interface WebSocketMessage {
|
export interface WebSocketMessage {
|
||||||
key: string;
|
key: string;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<div class="tfw-messages-main">
|
<div class="tfw-messages-main">
|
||||||
<div class="tfw-grid-message"
|
<div class="tfw-grid-message"
|
||||||
*ngFor="let message of messages.slice(); let last = last"
|
*ngFor="let message of messages.slice(); let last = last"
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import "../../assets/scss/variables.scss";
|
@import "../../assets/scss/variables.scss";
|
||||||
@import "../../assets/scss/mixins/layout";
|
@import "../../assets/scss/mixins/layout";
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { ChangeDetectorRef, Component, OnInit, EventEmitter, Output } from '@angular/core';
|
import { ChangeDetectorRef, Component, OnInit, EventEmitter, Output } from '@angular/core';
|
||||||
import { MessageConfig, MessageData, Message, MessageQueue } from '../message-types/bot-messages';
|
import { MessageConfig, MessageData, Message, MessageQueue } from '../message-types/bot-messages';
|
||||||
import { MarkdownService } from '../services/markdown.service';
|
import { MarkdownService } from '../services/markdown.service';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Pipe, PipeTransform } from '@angular/core';
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
import { DomSanitizer } from '@angular/platform-browser';
|
import { DomSanitizer } from '@angular/platform-browser';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Subject } from 'rxjs';
|
import { Subject } from 'rxjs';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { WebSocketService } from './websocket.service';
|
import { WebSocketService } from './websocket.service';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Converter } from 'showdown';
|
import { Converter } from 'showdown';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { WebSocketService } from './websocket.service';
|
import { WebSocketService } from './websocket.service';
|
||||||
import { LogMessage } from '../message-types/log-message';
|
import { LogMessage } from '../message-types/log-message';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
|
|
||||||
import { WebSocketService } from './websocket.service';
|
import { WebSocketService } from './websocket.service';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Terminal } from 'xterm';
|
import { Terminal } from 'xterm';
|
||||||
import * as fit from 'xterm/lib/addons/fit/fit';
|
import * as fit from 'xterm/lib/addons/fit/fit';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
import { webSocket, WebSocketSubject } from 'rxjs/webSocket';
|
import { webSocket, WebSocketSubject } from 'rxjs/webSocket';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<div class="tfw-ide-pin" *ngFor="let layoutIter of enabledLayouts">
|
<div class="tfw-ide-pin" *ngFor="let layoutIter of enabledLayouts">
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import "../../assets/scss/variables.scss";
|
@import "../../assets/scss/variables.scss";
|
||||||
@import "../../assets/scss/mixins/layout.scss";
|
@import "../../assets/scss/mixins/layout.scss";
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
||||||
import { config } from '../config';
|
import { config } from '../config';
|
||||||
|
|
||||||
|
@ -1,4 +1 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<div #xterm class="tfw-xterm" (window:resize)="fit()"></div>
|
<div #xterm class="tfw-xterm" (window:resize)="fit()"></div>
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import "../../assets/scss/mixins/layout.scss";
|
@import "../../assets/scss/mixins/layout.scss";
|
||||||
@import "../../app/dashboard/dashboard.component.scss";
|
@import "../../app/dashboard/dashboard.component.scss";
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { AfterViewInit, Component, ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
import { AfterViewInit, Component, ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
||||||
import { TerminadoService } from '../services/terminado.service';
|
import { TerminadoService } from '../services/terminado.service';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<textarea [(ngModel)]="messageStr"
|
<textarea [(ngModel)]="messageStr"
|
||||||
cols="33"
|
cols="33"
|
||||||
rows="7"
|
rows="7"
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { WebSocketService } from '../services/websocket.service';
|
import { WebSocketService } from '../services/websocket.service';
|
||||||
|
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
All Rights Reserved. See LICENSE file for details. -->
|
|
||||||
|
|
||||||
<h2>WebComponent is here!</h2>
|
<h2>WebComponent is here!</h2>
|
||||||
<p>Edit me if you want to write your own component in Angular!</p>
|
<p>Edit me if you want to write your own component in Angular!</p>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
// Edit me if you want to write your own component in Angular!
|
// Edit me if you want to write your own component in Angular!
|
||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
.tao-grid-center-center {
|
.tao-grid-center-center {
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
@import
|
@import
|
||||||
'variables',
|
'variables',
|
||||||
'grid';
|
'grid';
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Spaces
|
// Spaces
|
||||||
//
|
//
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
$grid-columns-count: 100;
|
$grid-columns-count: 100;
|
||||||
$grid-rows-count: 30;
|
$grid-rows-count: 30;
|
||||||
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
||||||
// All Rights Reserved. See LICENSE file for details.
|
|
||||||
|
|
||||||
.tao-btn-primary {
|
.tao-btn-primary {
|
||||||
color: $tao-blue-500;
|
color: $tao-blue-500;
|
||||||
font-size: $font-size-base;
|
font-size: $font-size-base;
|
||||||
|
Loading…
Reference in New Issue
Block a user