Browse Source

Open IMDB url in new window. fix #797

pull/770/merge
Ruud 13 years ago
parent
commit
012ae9769a
  1. 3
      couchpotato/core/plugins/movie/static/movie.js

3
couchpotato/core/plugins/movie/static/movie.js

@ -329,7 +329,8 @@ var IMDBAction = new Class({
self.el = new Element('a.imdb', {
'title': 'Go to the IMDB page of ' + self.movie.getTitle(),
'href': 'http://www.imdb.com/title/'+self.id+'/'
'href': 'http://www.imdb.com/title/'+self.id+'/',
'target': '_blank'
});
if(!self.id) self.disable();

Loading…
Cancel
Save