r888888888
e339c0c919
activate gestures in <660px only
2017-09-23 13:28:35 -07:00
r888888888
5a47c91d2b
add threshold for gesture event
2017-09-23 13:26:02 -07:00
r888888888
507aa7c641
Merge branch 'master' of github.com:r888888888/danbooru
2017-09-23 13:15:05 -07:00
r888888888
5ad18aef22
implement gestures
2017-09-23 13:14:49 -07:00
r888888888
ffb212c616
remove extraneous links from post/show
2017-09-18 15:00:39 -07:00
r888888888
43199eb188
switch to invisible recaptcha
2017-09-16 12:49:48 -07:00
r888888888
0985f929cc
style buttons for upload/post edit pages
2017-09-14 16:56:40 -07:00
r888888888
5448ae5af4
truncate artist urls on display
2017-09-14 15:56:04 -07:00
r888888888
d12f082f9a
fixes #3300
2017-09-14 11:37:42 -07:00
r888888888
953b9c7a74
fixes #3281
2017-09-12 13:11:30 -07:00
r888888888
43c0a04011
more aggressive resizing to window for responsive mode
2017-09-07 18:43:08 -07:00
r888888888
b38789a875
remove unused js
2017-09-06 17:09:50 -07:00
r888888888
bb228d5735
add favorite action underneath image
2017-09-05 14:41:33 -07:00
r888888888
e498e03ceb
add message if ccs is not available
2017-08-23 17:42:37 -07:00
Albert Yi
fe6ae4b3d1
Merge pull request #3233 from evazion/feat-order-metatags
...
Add order:{tagcount,gentags,arttags,chartags,copytags} metatags.
2017-07-31 11:56:06 -07:00
evazion
fffc107d4f
Add order:{tagcount,gentags,arttags,chartags,copytags} metatags.
2017-07-21 23:11:02 -05:00
r888888888
c5a40628e6
integrate with ccs
2017-07-20 15:25:19 -07:00
evazion
b545a5e7f4
Fix related tags overflow in detachable tag edit dialog ( fix #3219 ).
...
Bug: resizing the tag edit dialog then expanding the related tags
section doesn't resize the dialog to fit the expanded related tags
section. Instead a scrollbar appears.
Fixes this by expanding the dialog's height when the related tags are
shown.
2017-07-17 19:00:12 -05:00
evazion
ffbf5bbcdf
Factor out related tags visibility toggling code.
2017-07-17 18:58:20 -05:00
evazion
3e3844a796
Remove unused tag subscription code ( #2956 , #3206 ).
2017-07-13 13:44:26 -05:00
evazion
d3d4e3cc8d
Fix #3216 : Allow note URL # anchors to work from the post itself
2017-07-12 21:53:26 -05:00
evazion
58923deaa7
saved_searches.js: fix typo.
2017-07-11 19:40:54 -05:00
evazion
6e3763e7d7
Remove minlength for autocompleting labels in saved search dialog.
...
Trigger autocomplete after typing the first letter when adding labels in
the saved search dialog.
2017-07-11 19:27:04 -05:00
evazion
51d0feb2c6
Fix #3214 : Add autocomplete for saved searches.
...
* Autocomplete the `search:<label>` metatag.
* Make label autocompletion do a prefix match instead of a substring
match. Example: `search:ar` matches `artists`, not `characters`. This
is how tags and most other things are autocompleted.
2017-07-11 19:24:49 -05:00
evazion
c13000a41e
notes: show note id in note edit dialog title.
2017-07-07 16:09:24 -05:00
evazion
ab0b4b4c67
notes: highlight notes linked via /posts/456#note-123.
2017-07-07 16:09:24 -05:00
evazion
c2e62b77fa
notes: move js initialization into initialize_all function.
2017-07-07 16:09:24 -05:00
evazion
cda35494a4
Disable blacklists on pages without blacklist controls. ( #3183 )
2017-07-03 15:10:36 -05:00
Albert Yi
954666893f
Merge pull request #3147 from evazion/fix-1908
...
Fix #1908 : Allow E shortcut to work on upload page.
2017-06-13 15:40:29 -07:00
evazion
a1c9f34027
Fix #1908 : Allow E shortcut to work on upload page.
2017-06-12 20:28:56 -05:00
evazion
5f9fce7343
Fix #3139 : XSS in Related Tags javascript.
2017-06-09 20:40:07 -05:00
evazion
42aed84975
/posts/$id: fix artcomm dialog to use dtext-ified commentary.
2017-06-09 12:29:04 -05:00
evazion
fed23c0baa
fetch source data: fix gallery warning for non-pixiv galleries.
2017-06-06 23:03:07 -05:00
Albert Yi
eea5fbaab3
Merge pull request #3112 from evazion/fix-edit-mode
...
Fix height of tag edit box in edit mode.
2017-06-05 12:03:37 -07:00
Albert Yi
494ad99aac
Merge pull request #3111 from evazion/fix-3099
...
Fix #3099 : NilClass error for approval API request
2017-06-05 12:03:18 -07:00
evazion
9b31e16627
mode menu: fix height of tag edit box in edit mode.
...
Bug: in edit mode, each time you click a thumbnail the height of the tag
edit box increases by 4px.
This is due to `scrollHeight` including vertical padding. Fix it to a)
ignore this padding, and b) ensure the min height is at least 80px.
2017-06-04 14:02:46 -05:00
evazion
fdf8e7d5d7
Fix mode menu 'approve' option.
...
* Fix routing error in respond_with (didn't use /moderator namespace).
* Fix /moderator/posts/approvals.json response to return full
PostApproval object, not just a success/failure message.
* Simplify the javascript a bit (use $.post instead of $.ajax).
2017-06-04 12:14:35 -05:00
evazion
3880fbe13e
/posts/$id: fix shift+O to approve shortcut.
...
`Danbooru.Post.approve` is used for approving posts via the mode menu.
It doesn't hide all the notices or the approve/disapprove/flag buttons.
Click the link instead to hide those things.
Click the #quick-mod-approve link instead of #approve because #approve
prompts for confirmation.
2017-06-04 10:07:26 -05:00
BrokenEagle
6f593de46d
Resize images for mobile layout
2017-06-03 12:52:27 -07:00
r888888888
3a49b3c54b
include normalized artist url in artist json
2017-05-30 12:01:18 -07:00
evazion
3ecee91861
Fix #3061 : Add "General" button for related tags on new/edit posts.
2017-05-26 12:49:59 -05:00
evazion
c68e68f3c2
/uploads/new: add show/hide commentary toggle button.
2017-05-13 00:18:52 -05:00
Albert Yi
dc02dcf0e0
Merge pull request #3015 from evazion/feat-replace-images
...
Fix #2949 : Sample image replacement ability
2017-05-12 17:11:29 -07:00
evazion
7a656f790d
/uploads/new: autopopulate commentary from /source.json.
2017-05-10 18:01:52 -05:00
evazion
7ade3b6831
Fix #2352 : return raw usernames in API instead of pretty names.
2017-05-03 22:16:38 -05:00
evazion
4e841c4ea5
post replacement: add "Replace Image" dialog to post sidebar.
2017-05-02 20:41:19 -05:00
evazion
e8b9361226
notes: display error message when note saving fails.
2017-04-28 21:37:14 -05:00
Albert Yi
9f19e2b78f
Merge pull request #3001 from evazion/feat-unfav-hotkey
...
/posts: add shift+F to unfavorite hotkey.
2017-04-26 13:55:56 -07:00
Albert Yi
41b245d19d
Merge pull request #2998 from evazion/fix-quote-stripping
...
Fix [quote] stripping for comments, forum post replies.
2017-04-26 12:43:30 -07:00
evazion
59a179fa15
/posts: add shift+F to unfavorite hotkey.
2017-04-25 01:50:14 -05:00