Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Motion Bank
MB.js
Quasar Components MoSys
Commits
a4872679
Commit
a4872679
authored
Oct 31, 2019
by
christianrhansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed upshowing main-handler on initial setting up a new cell
parent
713a21b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
partials/GridEditor.vue
partials/GridEditor.vue
+9
-4
No files found.
partials/GridEditor.vue
View file @
a4872679
...
...
@@ -145,13 +145,13 @@
//----------------------------------------------------------------------------------------------- move handler
//----- (main)
v-if="mobileTempCell.onGrid && !handlerNewCell.resize.pushed",
cell-handler-mobile.absolute(
cell-handler-mobile.
main.
absolute(
v-if="!handlerNewCell.resize.pushed",
@onIntersectionChange="intersectionChanged",
:element="'move'",
v-touch-pan="handleMoveCell",
:style="{left: handlerNewCell.move.x - 20 + 'px', top: handlerNewCell.move.y - 20 + 'px'}",
:class="[{'pushed': !handlerNewCell.move.pushed}]")
:class="[{'pushed': !handlerNewCell.move.pushed}
, {'hide': !mobileTempCell.onGrid}
]")
q-icon.self-center.rotate-180(name="open_with", size="22px")
//----- (temp)
...
...
@@ -165,13 +165,13 @@
//--------------------------------------------------------------------------------------------- resize handler
//----- (main)
v-if="mobileTempCell.onGrid && !handlerNewCell.move.pushed",
cell-handler-mobile.absolute(
cell-handler-mobile.
main.
absolute(
v-if="!handlerNewCell.move.pushed",
@onIntersectionChange="intersectionChanged",
:element="'resize'",
v-touch-pan="handleResizeCell",
:style="{left: handlerNewCell.resize.x - 20 + 'px', top: handlerNewCell.resize.y - 20 + 'px'}",
:class="{'pushed': !handlerNewCell.resize.pushed}")
:class="
[
{'pushed': !handlerNewCell.resize.pushed}
, {'hide': !mobileTempCell.onGrid}]
")
q-icon.self-center(name="signal_cellular_4_bar", size="12px", style="margin-left: -3px;")
//----- (temp)
...
...
@@ -1302,6 +1302,11 @@
//************************************************** mobile: new cell
handler-width = 40px
.main
&.hide
width 0!important
overflow hidden
.handler-new-cell
width handler-width
height handler-width
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment