Un-Mayhem

This commit is contained in:
Jordan Bates 2013-04-29 23:42:59 -07:00
commit e95d49f70e
7 changed files with 44 additions and 11 deletions

View File

@ -5,6 +5,7 @@ seaweedchan:
MayhemYDG: MayhemYDG:
- Add nyafuu archiving for /w/ - Add nyafuu archiving for /w/
- Add /d/ archive
### 1.1.3 - 2013-04-28 ### 1.1.3 - 2013-04-28
seaweedchan: seaweedchan:

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -21,6 +21,10 @@ Redirect =
"http://archive.4plebs.org/#{boardID}/full_image/#{filename}" "http://archive.4plebs.org/#{boardID}/full_image/#{filename}"
when 'c', 'w', 'wg' when 'c', 'w', 'wg'
"//archive.nyafuu.org/#{boardID}/full_image/#{filename}" "//archive.nyafuu.org/#{boardID}/full_image/#{filename}"
when 'vg'
"http://archive.nihil-ad-rem.net/#{boardID}/full_image/#{filename}"
when 'd'
"//loveisover.me/#{boardID}/full_image/#{filename}"
when 'ck', 'fa', 'lit', 's4s' when 'ck', 'fa', 'lit', 's4s'
"//fuuka.warosu.org/#{boardID}/full_image/#{filename}" "//fuuka.warosu.org/#{boardID}/full_image/#{filename}"
when 'cgl', 'g', 'mu' when 'cgl', 'g', 'mu'
@ -90,6 +94,10 @@ Redirect =
base: '//archive.nyafuu.org' base: '//archive.nyafuu.org'
boards: ['c', 'w', 'wg'] boards: ['c', 'w', 'wg']
type: 'foolfuuka' type: 'foolfuuka'
'LoveIsOver':
base: '//loveisover.me'
boards: ['d']
type: 'foolfuuka'
'Warosu': 'Warosu':
base: '//fuuka.warosu.org' base: '//fuuka.warosu.org'
boards: ['cgl', 'ck', 'fa', 'jp', 'lit', 's4s', 'q', 'tg'] boards: ['cgl', 'ck', 'fa', 'jp', 'lit', 's4s', 'q', 'tg']

View File

@ -376,9 +376,6 @@ a[href="javascript:;"] {
a.hide-announcement { a.hide-announcement {
float: left; float: left;
} }
#toggleMsgBtn {
display: none;
}
/* Unread */ /* Unread */
#unread-line { #unread-line {

View File

@ -11,7 +11,7 @@ ExpandComment =
name: 'Comment Expansion' name: 'Comment Expansion'
cb: @node cb: @node
node: -> node: ->
if a = $ '.abbr > a', @nodes.comment if a = $ '.abbr > a:not([onclick])', @nodes.comment
$.on a, 'click', ExpandComment.cb $.on a, 'click', ExpandComment.cb
callbacks: [] callbacks: []
cb: (e) -> cb: (e) ->