15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
import { Controller } from '@hotwired/stimulus'
|
|
|
|
export default class extends Controller {
|
|
static values = { offsetTop: { type: Number}}
|
|
connect() {
|
|
if ('parentIframe' in window) {
|
|
window.iFrameResizer = {
|
|
onReady: function () {
|
|
window.parentIFrame.scrollTo(0, this.offsetTopValue)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|