Merge branch 'master' of https://github.com/seaweedchan/4chan-x into v3
Conflicts: LICENSE builds/4chan-X.user.js builds/crx/script.js
This commit is contained in:
commit
4da7bd827d
@ -1,3 +1,9 @@
|
||||
### v1.3.2
|
||||
*2014-01-12*
|
||||
|
||||
**seaweedchan**:
|
||||
- Fix Menu errors on older Firefox versions, such as the ESR
|
||||
|
||||
### v1.3.1
|
||||
*2014-01-12*
|
||||
|
||||
|
||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* 4chan X - Version 1.3.1 - 2014-01-13
|
||||
* 4chan X - Version 1.3.2 - 2014-01-13
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.3.1
|
||||
// @version 1.3.2
|
||||
// @minGMVer 1.13
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "4chan X",
|
||||
"version": "1.3.1",
|
||||
"version": "1.3.2",
|
||||
"manifest_version": 2,
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"icons": {
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
postMessage({version:'1.3.1'},'*')
|
||||
postMessage({version:'1.3.2'},'*')
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "4chan-X",
|
||||
"version": "1.3.1",
|
||||
"version": "1.3.2",
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"meta": {
|
||||
"name": "4chan X",
|
||||
|
||||
@ -1110,7 +1110,7 @@ a:only-of-type > .remove {
|
||||
.reply .menu-button,
|
||||
.op .menu-button,
|
||||
#thread-watcher .menu-button {
|
||||
margin-left: -5px !important;
|
||||
margin-left: -1px !important;
|
||||
position: relative;
|
||||
}
|
||||
.op .menu-button,
|
||||
|
||||
@ -14,19 +14,14 @@ Menu =
|
||||
$.add @nodes.info, Menu.makeButton()
|
||||
|
||||
makeButton: do ->
|
||||
frag = null
|
||||
a = $.el 'a',
|
||||
className: 'menu-button'
|
||||
innerHTML: '<i class="fa fa-angle-down"></i>'
|
||||
href: 'javascript:;'
|
||||
->
|
||||
unless frag?
|
||||
frag = $.nodes [
|
||||
$.tn(' ')
|
||||
$.el 'a',
|
||||
className: 'menu-button'
|
||||
innerHTML: '<i class="fa fa-angle-down"></i>'
|
||||
href: 'javascript:;'
|
||||
]
|
||||
clone = frag.cloneNode true
|
||||
$.on clone.lastElementChild, 'click', Menu.toggle
|
||||
clone
|
||||
button = a.cloneNode true
|
||||
$.on button, 'click', Menu.toggle
|
||||
button
|
||||
|
||||
toggle: (e) ->
|
||||
post = Get.postFromNode @
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user