1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Design second video upload step

This commit is contained in:
Chocobozzz 2017-12-08 08:39:15 +01:00
parent c182778e26
commit cadb46d832
No known key found for this signature in database
GPG key ID: 583A612D890159BE
24 changed files with 173 additions and 98 deletions

View file

@ -77,7 +77,6 @@ export class ServerService {
notifier: ReplaySubject<boolean>
) {
return this.http.get(ServerService.BASE_VIDEO_URL + attributeName)
.do(() => notifier.next(true))
.subscribe(data => {
Object.keys(data)
.forEach(dataKey => {
@ -86,6 +85,8 @@ export class ServerService {
label: data[dataKey]
})
})
notifier.next(true)
})
}
}