Browse Source

Hide soon and late blocks on dashboard if their empty. fix #1778

pull/2133/head
Ruud 12 years ago
parent
commit
38886b28f7
  1. 6
      couchpotato/core/media/movie/_base/static/list.js
  2. 4
      couchpotato/static/scripts/page/home.js

6
couchpotato/core/media/movie/_base/static/list.js

@ -285,11 +285,11 @@ var MovieList = new Class({
}, self.filter),
'onSuccess': function(json){
available_chars = json.chars
json.chars.split('').each(function(c){
self.letters[c.capitalize()].addClass('available')
})
}
});
});
@ -568,7 +568,7 @@ var MovieList = new Class({
}
self.store(json.movies);
self.addMovies(json.movies, json.total);
self.addMovies(json.movies, json.total || json.movies.length);
if(self.scrollspy) {
self.load_more.set('text', 'load more movies');
self.scrollspy.start();

4
couchpotato/static/scripts/page/home.js

@ -74,10 +74,6 @@ Page.Home = new Class({
'limit': 12,
'title': 'Available soon',
'description': 'These are being searched for and should be available soon as they will be released on DVD in the next few weeks.',
'on_empty_element': new Element('div').adopt(
new Element('h2', {'text': 'Available soon'}),
new Element('span', {'text': 'There are no movies available soon. Add some movies, so you have something to watch later.'})
),
'filter': {
'random': true
},

Loading…
Cancel
Save