You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a plugin that manipulate DOM and so instantclick bar is moved by this plugin causing some issue.
I hope you can add option to append instantclick bar not only on body but on a specific div, or allow to add it by default in html.
I modify update function in this way:
function update() {
$barElement.style[$barTransformProperty] = 'translate(' + $barProgress + '%)'
if (!document.getElementById($barContainer.id)) {
//document.body.appendChild($barContainer)
document.getElementById('wrapper').appendChild($barContainer); // Updated
}
}
The text was updated successfully, but these errors were encountered:
kamov
changed the title
Allow to append instantclick on div and not only on body
Allow to append instantclick bar on div and not only on body
Mar 12, 2017
I have a plugin that manipulate DOM and so instantclick bar is moved by this plugin causing some issue.
I hope you can add option to append instantclick bar not only on body but on a specific div, or allow to add it by default in html.
I modify update function in this way:
The text was updated successfully, but these errors were encountered: