fix js error

This commit is contained in:
John Bintz 2009-11-30 21:05:28 -05:00
parent af30e9353c
commit 2d251358f1
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ var button_images = {
};
var BookmarkInfo = Class.create({
'default': {
'def': {
'permalink': false
},
'initialize': function() {
@ -21,7 +21,7 @@ var BookmarkInfo = Class.create({
var bookmark_info = this.jar.get('bookmark-info');
if ((typeof(bookmark_info) != 'object') || (bookmark_info == null)) {
bookmark_info = this.default;
bookmark_info = this.def;
}
return bookmark_info;