Home: https://www.gmo-pg.com/en/
Contents:
Home: https://www.gmo-pg.com/en/
Contents:
Title | Link |
---|---|
Github | https://github.com/mongodb/mongoid |
Docs | https://docs.mongodb.com/mongoid/current/ |
Make sure you have ruby
installed. I am using rbenv
to maintain different versions of ruby
across projects.
Contents:
Description | Link |
---|---|
Home | http://reddotpayment.com/ |
Contact us | http://reddotpayment.com/contact-us/ |
Test Dashboard | http://test.reddotpayment.com/instanpanel/ |
Description | Link |
---|---|
Home | https://home.bluesnap.com |
Developer Hub | https://developers.bluesnap.com |
Authentication | https://developers.bluesnap.com/docs/authentication |
Payment API | https://developers.bluesnap.com/v8976-JSON/docs |
Contents:
Go to an element on page using jQuery.
// @params
// ms - milliseconds
// top - padding from top after scrolling to the element
(function(jQuery) {
jQuery.fn.goTo = function(ms, top) {
if (top == null) {
top = 10;
// @params
// element - Element whose position is to be found
// footerHeight - Height to subtract from window bottom in case of a fixed footer/overlay
window.elementPositionByViewport = function(element, footerHeight) {
var elementBottom, elementTop, screenBottom, screenTop;
if (footerHeight == null) {
footerHeight = 0;
}