mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	fix: Drag Delay Only Apply On Touch (#4453)
This commit is contained in:
		| @@ -6,7 +6,7 @@ | |||||||
|           :value="fields" |           :value="fields" | ||||||
|           handle=".handle" |           handle=".handle" | ||||||
|           delay="250" |           delay="250" | ||||||
|           delay-on-touch-only |           :delay-on-touch-only="true" | ||||||
|           v-bind="{ |           v-bind="{ | ||||||
|             animation: 200, |             animation: 200, | ||||||
|             group: 'recipe-instructions', |             group: 'recipe-instructions', | ||||||
|   | |||||||
| @@ -6,7 +6,7 @@ | |||||||
|       v-model="recipe.recipeIngredient" |       v-model="recipe.recipeIngredient" | ||||||
|       handle=".handle" |       handle=".handle" | ||||||
|       delay="250" |       delay="250" | ||||||
|       delay-on-touch-only |       :delay-on-touch-only="true" | ||||||
|       v-bind="{ |       v-bind="{ | ||||||
|         animation: 200, |         animation: 200, | ||||||
|         group: 'recipe-ingredients', |         group: 'recipe-ingredients', | ||||||
|   | |||||||
| @@ -78,7 +78,7 @@ | |||||||
|       :value="value" |       :value="value" | ||||||
|       handle=".handle" |       handle=".handle" | ||||||
|       delay="250" |       delay="250" | ||||||
|       delay-on-touch-only |       :delay-on-touch-only="true" | ||||||
|       v-bind="{ |       v-bind="{ | ||||||
|         animation: 200, |         animation: 200, | ||||||
|         group: 'recipe-instructions', |         group: 'recipe-instructions', | ||||||
|   | |||||||
| @@ -57,7 +57,7 @@ | |||||||
|           v-model="cookbooks" |           v-model="cookbooks" | ||||||
|           handle=".handle" |           handle=".handle" | ||||||
|           delay="250" |           delay="250" | ||||||
|           delay-on-touch-only |           :delay-on-touch-only="true" | ||||||
|           style="width: 100%" |           style="width: 100%" | ||||||
|           @change="actions.updateOrder()" |           @change="actions.updateOrder()" | ||||||
|         > |         > | ||||||
|   | |||||||
| @@ -47,7 +47,7 @@ | |||||||
|             v-model="parsedIng" |             v-model="parsedIng" | ||||||
|             handle=".handle" |             handle=".handle" | ||||||
|             delay="250" |             delay="250" | ||||||
|             delay-on-touch-only |             :delay-on-touch-only="true" | ||||||
|             :style="{ width: '100%' }" |             :style="{ width: '100%' }" | ||||||
|             ghost-class="ghost" |             ghost-class="ghost" | ||||||
|           > |           > | ||||||
|   | |||||||
| @@ -101,7 +101,7 @@ | |||||||
|           tag="div" |           tag="div" | ||||||
|           handle=".handle" |           handle=".handle" | ||||||
|           delay="250" |           delay="250" | ||||||
|           delay-on-touch-only |           :delay-on-touch-only="true" | ||||||
|           :value="plan.meals" |           :value="plan.meals" | ||||||
|           group="meals" |           group="meals" | ||||||
|           :data-index="index" |           :data-index="index" | ||||||
|   | |||||||
| @@ -108,7 +108,7 @@ | |||||||
|             :value="localLabels" |             :value="localLabels" | ||||||
|             handle=".handle" |             handle=".handle" | ||||||
|             delay="250" |             delay="250" | ||||||
|             delay-on-touch-only |             :delay-on-touch-only="true" | ||||||
|             class="my-2" |             class="my-2" | ||||||
|             @input="updateLabelOrder" |             @input="updateLabelOrder" | ||||||
|           > |           > | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user