1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-25 21:23:03 +02:00

Fix qtip viewport overflow.

The qtips under the permissons was overflowing left of the screen and only half of the text was readable. To activate position.adjust.method plugin, I added the viewport option. Also changed default adjust method to shift instead of flip.
This commit is contained in:
Canklot 2023-08-11 23:58:21 +03:00
parent 2c161a8dd4
commit 44b4904814
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ class Choosealicense
qtip_position:
my: "top center"
at: "bottom center"
viewport: $(window)
# Annotation rule types as defined in `_config.yml`
ruletypes:
permissions: "Permission"

View File

@ -1924,7 +1924,7 @@ QTIP.defaults = {
mouse: TRUE,
scroll: TRUE,
resize: TRUE,
method: 'flipinvert flipinvert'
method: 'shift shift'
},
effect: function(api, pos, viewport) {
$(this).animate(pos, {

File diff suppressed because one or more lines are too long