aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-01-13 14:31:33 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-01-13 14:31:33 +0100
commitcdcbc81077a6ca3ef2f23a3e93260a6ffe1a4332 (patch)
treede695f7b0573c18d486f41a4be2f4bce4bc933b7 /client/src
parentc16ce1de8e8c21ad2136335d3b0b7d230e6d2f24 (diff)
downloadPeerTube-cdcbc81077a6ca3ef2f23a3e93260a6ffe1a4332.tar.gz
PeerTube-cdcbc81077a6ca3ef2f23a3e93260a6ffe1a4332.tar.zst
PeerTube-cdcbc81077a6ca3ef2f23a3e93260a6ffe1a4332.zip
Client: update ng2-meta
Diffstat (limited to 'client/src')
-rw-r--r--client/src/app/app.component.ts2
-rw-r--r--client/src/app/app.module.ts2
-rw-r--r--client/src/app/videos/video-watch/video-watch.component.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts
index 3f2f1ace0..ce4fc04ff 100644
--- a/client/src/app/app.component.ts
+++ b/client/src/app/app.component.ts
@@ -1,7 +1,7 @@
1import { Component, ViewContainerRef } from '@angular/core'; 1import { Component, ViewContainerRef } from '@angular/core';
2import { Router } from '@angular/router'; 2import { Router } from '@angular/router';
3 3
4import { MetaService } from 'ng2-meta/src'; 4import { MetaService } from 'ng2-meta';
5@Component({ 5@Component({
6 selector: 'my-app', 6 selector: 'my-app',
7 templateUrl: './app.component.html', 7 templateUrl: './app.component.html',
diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts
index fb71787c4..10526e813 100644
--- a/client/src/app/app.module.ts
+++ b/client/src/app/app.module.ts
@@ -2,7 +2,7 @@ import { ApplicationRef, NgModule } from '@angular/core';
2import { BrowserModule } from '@angular/platform-browser'; 2import { BrowserModule } from '@angular/platform-browser';
3import { removeNgStyles, createNewHosts } from '@angularclass/hmr'; 3import { removeNgStyles, createNewHosts } from '@angularclass/hmr';
4 4
5import { MetaModule, MetaConfig } from 'ng2-meta/src'; 5import { MetaModule, MetaConfig } from 'ng2-meta';
6import 'bootstrap-loader'; 6import 'bootstrap-loader';
7 7
8import { ENV_PROVIDERS } from './environment'; 8import { ENV_PROVIDERS } from './environment';
diff --git a/client/src/app/videos/video-watch/video-watch.component.ts b/client/src/app/videos/video-watch/video-watch.component.ts
index 14aae9895..256ffef99 100644
--- a/client/src/app/videos/video-watch/video-watch.component.ts
+++ b/client/src/app/videos/video-watch/video-watch.component.ts
@@ -2,7 +2,7 @@ import { setInterval, setTimeout } from 'timers'
2import { Component, ElementRef, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core'; 2import { Component, ElementRef, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core';
3import { ActivatedRoute } from '@angular/router'; 3import { ActivatedRoute } from '@angular/router';
4 4
5import { MetaService } from 'ng2-meta/src'; 5import { MetaService } from 'ng2-meta';
6import * as videojs from 'video.js'; 6import * as videojs from 'video.js';
7 7
8import { VideoMagnetComponent } from './video-magnet.component'; 8import { VideoMagnetComponent } from './video-magnet.component';