mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-07-20 02:01:26 +02:00
cfg(torrents): new app configure settings of app.domain
This commit is contained in:
14
config/env/torrents.js
vendored
14
config/env/torrents.js
vendored
@@ -975,12 +975,12 @@ module.exports = {
|
||||
tmdbHome: 'https://www.themoviedb.org',
|
||||
tmdbMovieLinkUrl: 'https://www.themoviedb.org/movie/',
|
||||
tmdbTvserialLinkUrl: 'https://www.themoviedb.org/tv/',
|
||||
backdropImgBaseUrl: 'http://image.tmdb.org/t/p/w1280',
|
||||
backdropImgBaseUrl_300: 'http://image.tmdb.org/t/p/w300',
|
||||
backdropImgBaseUrl_780: 'http://image.tmdb.org/t/p/w780',
|
||||
posterImgBaseUrl: 'http://image.tmdb.org/t/p/w500',
|
||||
posterListBaseUrl: 'http://image.tmdb.org/t/p/w92',
|
||||
castImgBaseUrl: 'http://image.tmdb.org/t/p/w132_and_h132_bestv2'
|
||||
backdropImgBaseUrl: 'https://image.tmdb.org/t/p/w1280',
|
||||
backdropImgBaseUrl_300: 'https://image.tmdb.org/t/p/w300',
|
||||
backdropImgBaseUrl_780: 'https://image.tmdb.org/t/p/w780',
|
||||
posterImgBaseUrl: 'https://image.tmdb.org/t/p/w500',
|
||||
posterListBaseUrl: 'https://image.tmdb.org/t/p/w92',
|
||||
castImgBaseUrl: 'https://image.tmdb.org/t/p/w132_and_h132_bestv2'
|
||||
},
|
||||
|
||||
/**
|
||||
@@ -991,7 +991,7 @@ module.exports = {
|
||||
* @imdbLinkUrl: linked url, will nav to imdb website
|
||||
*/
|
||||
imdbConfig: {
|
||||
imdbLinkUrl: 'http://www.imdb.com/title/'
|
||||
imdbLinkUrl: 'https://www.imdb.com/title/'
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
|
||||
.home_vip_info {
|
||||
background-color: #f7f7f7;
|
||||
background-image: url("http://image.tmdb.org/t/p/w1280/wwPWKRteE3vxTMta2IxdRgEhYsq.jpg");
|
||||
background-image: url("https://image.tmdb.org/t/p/w1280/wwPWKRteE3vxTMta2IxdRgEhYsq.jpg");
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@@ -502,7 +502,7 @@
|
||||
|
||||
<img class="img-thumbnail" ng-if="vm.collection.backdrop_path"
|
||||
ng-src="{{vm.tmdbConfig.backdropImgBaseUrl_780 + vm.collection.backdrop_path}}"
|
||||
on-error-src="http://image.tmdb.org/t/p/w1280/5pAGnkFYSsFJ99ZxDIYnhQbQFXs.jpg">
|
||||
on-error-src="https://image.tmdb.org/t/p/w1280/5pAGnkFYSsFJ99ZxDIYnhQbQFXs.jpg">
|
||||
|
||||
<div class="margin-top-20 h5" ng-class="vm.collection.status == 'loading' ? 'text-success' : 'text-danger'"
|
||||
ng-if="vm.collection.status != 'ok'">{{vm.collection.status_msg | translate}}
|
||||
|
||||
Reference in New Issue
Block a user