13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
import { Controller } from '@hotwired/stimulus'
|
|
|
|
export default class extends Controller {
|
|
connect() {
|
|
if ('parentIframe' in window) {
|
|
window.iFrameResizer = {
|
|
onReady: function () {
|
|
window.parentIFrame.scrollTo(0, 0)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |