Skip to content

Commit

Permalink
style(components/cursor): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
timekadel committed Oct 27, 2023
1 parent de7688f commit e379757
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/views/components/custom/misc/cursor.component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@
<div ref="cursor" class="cursor"/>
<div ref="pointer" class="pointer"/>
<div ref="floaters" class="floaters">

</div>

</div>
</template>

<script>
import _ from 'lodash'
console.log(_)
export default {
name: "CursorComponent",
mounted(){
Expand All @@ -36,7 +32,6 @@ export default {
cursorEl.style.transform = `translate(${x - 30}px,${y - 30}px)`
pointerEl.style.transform = `translate(${x - 10}px,${y - 10}px)`
this.timerHandle = setTimeout(this.diasbleCursorVisibility,2000);
console.log("ok")
}
},
diasbleCursorVisibilityPermanently(){
Expand Down

0 comments on commit e379757

Please sign in to comment.