@@ -328,6 +328,10 @@ export default {
.then(results => {
this.results = results;
})
+ let infoBox = this.$refs.info;
+ if (infoBox == undefined)
+ return;
+ infoBox.box = null;
}
@@ -35,7 +35,14 @@
<script>
export default {
name: "paginated-media",
- props: ['rows', 'width', 'inline', 'deletable', 'current', 'filter'],
+ props: [
+ 'rows',
+ 'width',
+ 'inline',
+ 'deletable',
+ 'current',
+ 'filter'
+ ],
mounted: function () {
window.addEventListener('resize', this.resize);
window.addEventListener('wheel', this.scroll);