Skip to content

Commit 7bf73ab

Browse files
committed
chore: Fullscreen mixin rename
1 parent 5eb7019 commit 7bf73ab

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/components/carousel/QCarousel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import { start, stop } from '../../utils/animate'
5656
import { getEventKey } from '../../utils/event'
5757
import CarouselMixin from './carousel-mixin'
5858
import { QIcon } from '../icon'
59-
import FullscreenMixin from '../../utils/fullscreen-mixin'
59+
import FullscreenMixin from '../../utils/mixin-fullscreen'
6060
6161
export default {
6262
name: 'q-carousel',

src/components/editor/QEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { getToolbar, getFonts } from './editor-utils'
33
import { buttons } from './editor-definitions'
44
import { Caret } from './editor-caret'
55
import extend from '../../utils/extend'
6-
import FullscreenMixin from '../../utils/fullscreen-mixin'
6+
import FullscreenMixin from '../../utils/mixin-fullscreen'
77

88
export default {
99
name: 'q-editor',

src/css/core/helpers.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@
4343
color inherit
4444
opacity .5
4545

46-
body.with-fullscreen-mixin
46+
body.with-mixin-fullscreen
4747
overflow hidden !important
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ export default {
3636
this.container = this.$el.parentNode
3737
this.container.replaceChild(this.fillerNode, this.$el)
3838
document.body.appendChild(this.$el)
39-
document.body.classList.add('with-fullscreen-mixin')
39+
document.body.classList.add('with-mixin-fullscreen')
4040
this.inFullscreen = true
4141
return
4242
}
4343

4444
this.inFullscreen = false
4545
this.container.replaceChild(this.$el, this.fillerNode)
46-
document.body.classList.remove('with-fullscreen-mixin')
46+
document.body.classList.remove('with-mixin-fullscreen')
4747
},
4848
__popState () {
4949
if (this.inFullscreen) {

0 commit comments

Comments
 (0)