We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
you have to customize bootstrap-year-calendar.js
Find this line: contextMenu.css('left', elt.offset().left + 25 + 'px');
contextMenu.css('left', elt.offset().left + 25 + 'px');
And then customize the value 25 to fit your needs. I did like this for my own need:
var offset=25; if (elt.offset().left>window.innerWidth-200) offset=-200; contextMenu.css('left', elt.offset().left + offset + 'px');
You should change the value 200 accordingly. You can do the same for the Height if you encounter that problem.
200
Height
Sorry, something went wrong.
Fix for issue Paul-DS#150 when context menu goes off screen
02216eb
No branches or pull requests
The text was updated successfully, but these errors were encountered: