Browse Source

Use finish by default when adding new type

pull/908/head
Ruud 13 years ago
parent
commit
d38bd03422
  1. 2
      couchpotato/core/plugins/profile/static/profile.js

2
couchpotato/core/plugins/profile/static/profile.js

@ -242,7 +242,7 @@ Profile.Type = new Class({
),
new Element('span.finish').adopt(
self.finish = new Element('input.inlay.finish[type=checkbox]', {
'checked': data.finish,
'checked': data.finish !== undefined ? data.finish : 1,
'events': {
'change': function(e){
if(self.el == self.el.getParent().getElement(':first-child')){

Loading…
Cancel
Save