Created
September 28, 2016 22:37
-
-
Save NatalieMac/be53299affd32d610ca15d307546956c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(function ($, dacustom, undefined) { | |
dacustom.init = function() { | |
var areas = $('area.more-info-area'); | |
areas.each(function(){ | |
var $this = $(this); | |
var api = $this.qtip('api'); | |
api.set('position.adjust.mouse', false); | |
console.log(api.get('position.adjust.mouse')); | |
}); | |
}; | |
}(jQuery, window.dacustom = window.dacustom || {})); | |
jQuery(function(){ | |
dacustom.init(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment