Browse Source

Force dashboard view

pull/1516/merge
Ruud 12 years ago
parent
commit
73b7bcc6ce
  1. 4
      couchpotato/core/plugins/movie/static/list.js

4
couchpotato/core/plugins/movie/static/list.js

@ -144,7 +144,7 @@ var MovieList = new Class({
var self = this;
var chars = '#ABCDEFGHIJKLMNOPQRSTUVWXYZ';
self.current_view = self.getSavedView();
self.current_view = self.getSavedView() || 'details';
self.el.addClass(self.current_view+'_list')
self.navigation = new Element('div.alph_nav').adopt(
@ -434,7 +434,7 @@ var MovieList = new Class({
getSavedView: function(){
var self = this;
return Cookie.read(self.options.identifier+'_view') || 'details';
return Cookie.read(self.options.identifier+'_view');
},
search: function(){

Loading…
Cancel
Save