; (function($, w) { 'use strict'; let $window = $(w); $(document).ready(function() { let isEnable = ""; let isEnableLazyMove = ""; let speed = isEnableLazyMove ? '0.7' : '0.2'; if( !isEnable ) { return; } if (typeof haCursor == 'undefined' || haCursor == null) { initiateHaCursorObject(speed); } setTimeout(function() { let targetCursor = $('.ha-cursor'); if (targetCursor) { if (!isEnable) { $('body').removeClass('hm-init-default-cursor-none'); $('.ha-cursor').addClass('ha-init-hide'); } else { $('body').addClass('hm-init-default-cursor-none'); $('.ha-cursor').removeClass('ha-init-hide'); } } }, 500); }); }(jQuery, window));