mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Fixed broken time check
This commit is contained in:
parent
e23e1a3dab
commit
59130e0bda
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ module.exports = angular.module('ponyfm').directive 'pfmTrackEditor', () ->
|
|||
$scope.isAdmin = auth.data.isAdmin
|
||||
albumsDb = {}
|
||||
|
||||
$scope.disableHwc = new Date < new Date('2016-12-20 23:59:59')
|
||||
$scope.disableHwc = new Date > new Date('2016-12-20 23:59:59')
|
||||
|
||||
$scope.data = upload
|
||||
$scope.userSlug = $state.params.slug
|
||||
|
|
Loading…
Reference in a new issue