Line data Source code
1 1 : <template lang="pug"> 2 1 : .x-property-code-editor.position-relative( 3 1 : :class="{ selecting: isSelecting }") 4 1 : BaseModalLoader(:isLoading='isSelecting' 5 1 : @click.native.capture.prevent='' 6 : @pointerdown.native.capture.prevent='') 7 : span Waiting for selection... 8 : 9 : SVGSelector(ref="selector") 10 : div(ref="cm") 11 : </template> 12 : <script src='./PropertyCodeEditor.vue.js' /> 13 : <style lang='scss'> 14 : .x-property-code-editor.selecting { 15 : cursor: wait!important; 16 : } 17 : </style>