compile that

This commit is contained in:
ccd0 2014-04-06 19:46:58 -07:00
parent 53f6aac3d7
commit b070cfc9b0
2 changed files with 8 additions and 4 deletions

View File

@ -131,7 +131,7 @@
Config = {
main: {
'Miscellaneous': {
'JSON Navigation': [true, 'Use JSON for loading the Board Index and Threads. Also allows searching and sorting the board index and infinite scolling.'],
'JSON Navigation': [false, 'Use JSON for loading the Board Index and Threads. Also allows searching and sorting the board index and infinite scolling.'],
'Catalog Links': [true, 'Add toggle link in header menu to turn Navigation links into links to each board\'s catalog.'],
'External Catalog': [false, 'Link to external catalog instead of the internal one.'],
'QR Shortcut': [false, 'Adds a small [QR] link in the header.'],
@ -7970,7 +7970,9 @@
endEvents: 'mouseout click',
asapTest: function() {
if (isVideo) {
return el.videoHeight || el.naturalHeight;
return el.videoHeight;
} else {
return el.naturalHeight;
}
},
noRemove: true,

View File

@ -107,7 +107,7 @@
Config = {
main: {
'Miscellaneous': {
'JSON Navigation': [true, 'Use JSON for loading the Board Index and Threads. Also allows searching and sorting the board index and infinite scolling.'],
'JSON Navigation': [false, 'Use JSON for loading the Board Index and Threads. Also allows searching and sorting the board index and infinite scolling.'],
'Catalog Links': [true, 'Add toggle link in header menu to turn Navigation links into links to each board\'s catalog.'],
'External Catalog': [false, 'Link to external catalog instead of the internal one.'],
'QR Shortcut': [false, 'Adds a small [QR] link in the header.'],
@ -7978,7 +7978,9 @@
endEvents: 'mouseout click',
asapTest: function() {
if (isVideo) {
return el.videoHeight || el.naturalHeight;
return el.videoHeight;
} else {
return el.naturalHeight;
}
},
noRemove: true,