mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-30 23:16:52 +00:00
Removes help
This commit is contained in:
@@ -52,10 +52,6 @@ const routes: Routes = [
|
||||
path: 'currency-list',
|
||||
component: CurrencyListComponent
|
||||
},
|
||||
{
|
||||
path: 'help',
|
||||
component: CurrencyListComponent
|
||||
},
|
||||
//Settings
|
||||
{
|
||||
path: 'settings',
|
||||
|
||||
@@ -23,10 +23,6 @@
|
||||
<mat-icon>settings</mat-icon>
|
||||
<h3>Settings</h3>
|
||||
</mat-list-item>
|
||||
<mat-list-item routerLink="help_outline" routerLinkActive="help-highlight">
|
||||
<mat-icon>help</mat-icon>
|
||||
<h3>Help</h3>
|
||||
</mat-list-item>
|
||||
<mat-list-item routerLink="donate" routerLinkActive="donate-highlight">
|
||||
<mat-icon>thumb_up</mat-icon>
|
||||
<h3>Donate</h3>
|
||||
@@ -38,6 +34,12 @@
|
||||
<h3>GitHub</h3>
|
||||
</a>
|
||||
</mat-list-item>
|
||||
<mat-list-item routerLink="help_outline" routerLinkActive="help-highlight">
|
||||
<mat-icon>help</mat-icon>
|
||||
<a href="https://github.com/thrasher-/gocryptotrader/wiki" target="_blank">
|
||||
<h3>Help</h3>
|
||||
</a>
|
||||
</mat-list-item>
|
||||
<mat-list-item>
|
||||
<mat-icon>view_agenda</mat-icon>
|
||||
<a href="https://trello.com/b/ZAhMhpOy/gocryptotrader" target="_blank">
|
||||
|
||||
@@ -38,7 +38,6 @@ import { AboutComponent } from './pages/about/about.component';
|
||||
import { DashboardComponent } from './pages/dashboard/dashboard.component';
|
||||
import { WalletComponent } from './pages/wallet/wallet.component';
|
||||
import { DonateComponent } from './pages/donate/donate.component';
|
||||
import { HelpComponent } from './pages/help/help.component';
|
||||
|
||||
import { SettingsComponent, EnabledCurrenciesDialogueComponent } from './pages/settings/settings.component';
|
||||
|
||||
@@ -100,7 +99,6 @@ import { SellFormComponent } from './shared/sell-form/sell-form.component';
|
||||
ExchangeGridComponent,
|
||||
CurrencyListComponent,
|
||||
SellFormComponent,
|
||||
HelpComponent,
|
||||
IterateMapPipe,
|
||||
EnabledCurrenciesPipe,
|
||||
EnabledCurrenciesDialogueComponent
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<p>
|
||||
help works!
|
||||
</p>
|
||||
@@ -1,25 +0,0 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { HelpComponent } from './help.component';
|
||||
|
||||
describe('HelpComponent', () => {
|
||||
let component: HelpComponent;
|
||||
let fixture: ComponentFixture<HelpComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ HelpComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(HelpComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -1,15 +0,0 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-help',
|
||||
templateUrl: './help.component.html',
|
||||
styleUrls: ['./help.component.scss']
|
||||
})
|
||||
export class HelpComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user