mirror of
https://github.com/fastmail/Squire.git
synced 2025-01-06 23:00:08 -05:00
97a75e92ac
Attempting to get Drop.js Working with multiple elements.
13 lines
245 B
JavaScript
13 lines
245 B
JavaScript
(function() {
|
|
var drop, quit;
|
|
|
|
drop = new Drop({
|
|
target: document.querySelector('#font'),
|
|
content: document.querySelector('.drop-font').innerHTML,
|
|
position: 'bottom left',
|
|
openOn: 'click'
|
|
});
|
|
|
|
|
|
})();
|
|
|