PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
themes
/
wilcity
/
assets
/
production
/
js
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["vendors~WilCountdown"],{ /***/ "./node_modules/@chenfengyuan/vue-countdown/dist/vue-countdown.js": /*!************************************************************************!*\ !*** ./node_modules/@chenfengyuan/vue-countdown/dist/vue-countdown.js ***! \************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("/*!\n * vue-countdown v1.1.5\n * https://fengyuanchen.github.io/vue-countdown\n *\n * Copyright 2018-present Chen Fengyuan\n * Released under the MIT license\n *\n * Date: 2020-02-25T01:19:32.769Z\n */\n\n(function (global, factory) {\n true ? module.exports = factory() :\n undefined;\n}(this, (function () { 'use strict';\n\n var MILLISECONDS_SECOND = 1000;\n var MILLISECONDS_MINUTE = 60 * MILLISECONDS_SECOND;\n var MILLISECONDS_HOUR = 60 * MILLISECONDS_MINUTE;\n var MILLISECONDS_DAY = 24 * MILLISECONDS_HOUR;\n var EVENT_VISIBILITY_CHANGE = 'visibilitychange';\n var index = {\n name: 'countdown',\n data: function data() {\n return {\n /**\n * It is counting down.\n * @type {boolean}\n */\n counting: false,\n\n /**\n * The absolute end time.\n * @type {number}\n */\n endTime: 0,\n\n /**\n * The remaining milliseconds.\n * @type {number}\n */\n totalMilliseconds: 0\n };\n },\n props: {\n /**\n * Starts the countdown automatically when initialized.\n */\n autoStart: {\n type: Boolean,\n default: true\n },\n\n /**\n * Emits the countdown events.\n */\n emitEvents: {\n type: Boolean,\n default: true\n },\n\n /**\n * The interval time (in milliseconds) of the countdown progress.\n */\n interval: {\n type: Number,\n default: 1000,\n validator: function validator(value) {\n return value >= 0;\n }\n },\n\n /**\n * Generate the current time of a specific time zone.\n */\n now: {\n type: Function,\n default: function _default() {\n return Date.now();\n }\n },\n\n /**\n * The tag name of the component's root element.\n */\n tag: {\n type: String,\n default: 'span'\n },\n\n /**\n * The time (in milliseconds) to count down from.\n */\n time: {\n type: Number,\n default: 0,\n validator: function validator(value) {\n return value >= 0;\n }\n },\n\n /**\n * Transforms the output props before render.\n */\n transform: {\n type: Function,\n default: function _default(props) {\n return props;\n }\n }\n },\n computed: {\n /**\n * Remaining days.\n * @returns {number} The computed value.\n */\n days: function days() {\n return Math.floor(this.totalMilliseconds / MILLISECONDS_DAY);\n },\n\n /**\n * Remaining hours.\n * @returns {number} The computed value.\n */\n hours: function hours() {\n return Math.floor(this.totalMilliseconds % MILLISECONDS_DAY / MILLISECONDS_HOUR);\n },\n\n /**\n * Remaining minutes.\n * @returns {number} The computed value.\n */\n minutes: function minutes() {\n return Math.floor(this.totalMilliseconds % MILLISECONDS_HOUR / MILLISECONDS_MINUTE);\n },\n\n /**\n * Remaining seconds.\n * @returns {number} The computed value.\n */\n seconds: function seconds() {\n return Math.floor(this.totalMilliseconds % MILLISECONDS_MINUTE / MILLISECONDS_SECOND);\n },\n\n /**\n * Remaining milliseconds.\n * @returns {number} The computed value.\n */\n milliseconds: function milliseconds() {\n return Math.floor(this.totalMilliseconds % MILLISECONDS_SECOND);\n },\n\n /**\n * Total remaining days.\n * @returns {number} The computed value.\n */\n totalDays: function totalDays() {\n return this.days;\n },\n\n /**\n * Total remaining hours.\n * @returns {number} The computed value.\n */\n totalHours: function totalHours() {\n return Math.floor(this.totalMilliseconds / MILLISECONDS_HOUR);\n },\n\n /**\n * Total remaining minutes.\n * @returns {number} The computed value.\n */\n totalMinutes: function totalMinutes() {\n return Math.floor(this.totalMilliseconds / MILLISECONDS_MINUTE);\n },\n\n /**\n * Total remaining seconds.\n * @returns {number} The computed value.\n */\n totalSeconds: function totalSeconds() {\n return Math.floor(this.totalMilliseconds / MILLISECONDS_SECOND);\n }\n },\n render: function render(createElement) {\n return createElement(this.tag, this.$scopedSlots.default ? [this.$scopedSlots.default(this.transform({\n days: this.days,\n hours: this.hours,\n minutes: this.minutes,\n seconds: this.seconds,\n milliseconds: this.milliseconds,\n totalDays: this.totalDays,\n totalHours: this.totalHours,\n totalMinutes: this.totalMinutes,\n totalSeconds: this.totalSeconds,\n totalMilliseconds: this.totalMilliseconds\n }))] : this.$slots.default);\n },\n watch: {\n $props: {\n deep: true,\n immediate: true,\n\n /**\n * Update the countdown when props changed.\n */\n handler: function handler() {\n this.totalMilliseconds = this.time;\n this.endTime = this.now() + this.time;\n\n if (this.autoStart) {\n this.start();\n }\n }\n }\n },\n methods: {\n /**\n * Starts to countdown.\n * @public\n * @emits Countdown#start\n */\n start: function start() {\n if (this.counting) {\n return;\n }\n\n this.counting = true;\n\n if (this.emitEvents) {\n /**\n * Countdown start event.\n * @event Countdown#start\n */\n this.$emit('start');\n }\n\n if (document.visibilityState === 'visible') {\n this.continue();\n }\n },\n\n /**\n * Continues the countdown.\n * @private\n */\n continue: function _continue() {\n var _this = this;\n\n if (!this.counting) {\n return;\n }\n\n var delay = Math.min(this.totalMilliseconds, this.interval);\n\n if (delay > 0) {\n if (window.requestAnimationFrame) {\n var init;\n var prev;\n\n var step = function step(now) {\n if (!init) {\n init = now;\n }\n\n if (!prev) {\n prev = now;\n }\n\n var range = now - init;\n\n if (range >= delay // Avoid losing time about one second per minute (now - prev ≈ 16ms) (#43)\n || range + (now - prev) / 2 >= delay) {\n _this.progress();\n } else {\n _this.requestId = requestAnimationFrame(step);\n }\n\n prev = now;\n };\n\n this.requestId = requestAnimationFrame(step);\n } else {\n this.timeoutId = setTimeout(function () {\n _this.progress();\n }, delay);\n }\n } else {\n this.end();\n }\n },\n\n /**\n * Pauses the countdown.\n * @private\n */\n pause: function pause() {\n if (window.requestAnimationFrame) {\n cancelAnimationFrame(this.requestId);\n } else {\n clearTimeout(this.timeoutId);\n }\n },\n\n /**\n * Progresses to countdown.\n * @private\n * @emits Countdown#progress\n */\n progress: function progress() {\n if (!this.counting) {\n return;\n }\n\n this.totalMilliseconds -= this.interval;\n\n if (this.emitEvents && this.totalMilliseconds > 0) {\n /**\n * Countdown progress event.\n * @event Countdown#progress\n */\n this.$emit('progress', {\n days: this.days,\n hours: this.hours,\n minutes: this.minutes,\n seconds: this.seconds,\n milliseconds: this.milliseconds,\n totalDays: this.totalDays,\n totalHours: this.totalHours,\n totalMinutes: this.totalMinutes,\n totalSeconds: this.totalSeconds,\n totalMilliseconds: this.totalMilliseconds\n });\n }\n\n this.continue();\n },\n\n /**\n * Aborts the countdown.\n * @public\n * @emits Countdown#abort\n */\n abort: function abort() {\n if (!this.counting) {\n return;\n }\n\n this.pause();\n this.counting = false;\n\n if (this.emitEvents) {\n /**\n * Countdown abort event.\n * @event Countdown#abort\n */\n this.$emit('abort');\n }\n },\n\n /**\n * Ends the countdown.\n * @public\n * @emits Countdown#end\n */\n end: function end() {\n if (!this.counting) {\n return;\n }\n\n this.pause();\n this.totalMilliseconds = 0;\n this.counting = false;\n\n if (this.emitEvents) {\n /**\n * Countdown end event.\n * @event Countdown#end\n */\n this.$emit('end');\n }\n },\n\n /**\n * Updates the count.\n * @private\n */\n update: function update() {\n if (this.counting) {\n this.totalMilliseconds = Math.max(0, this.endTime - this.now());\n }\n },\n\n /**\n * visibility change event handler.\n * @private\n */\n handleVisibilityChange: function handleVisibilityChange() {\n switch (document.visibilityState) {\n case 'visible':\n this.update();\n this.continue();\n break;\n\n case 'hidden':\n this.pause();\n break;\n }\n }\n },\n mounted: function mounted() {\n document.addEventListener(EVENT_VISIBILITY_CHANGE, this.handleVisibilityChange);\n },\n beforeDestroy: function beforeDestroy() {\n document.removeEventListener(EVENT_VISIBILITY_CHANGE, this.handleVisibilityChange);\n this.pause();\n }\n };\n\n return index;\n\n})));\n\n\n//# sourceURL=webpack:///./node_modules/@chenfengyuan/vue-countdown/dist/vue-countdown.js?"); /***/ }) }]);
[+]
..
[-] vendors~UserProfile.vendors~UserProfile.js
[edit]
[-] 85.min.js
[edit]
[-] 13.13.js
[edit]
[-] 45.min.js
[edit]
[-] 29.29.js
[edit]
[-] WilIcon.WilIcon.js
[edit]
[-] 53.min.js
[edit]
[-] 13.min.js
[edit]
[-] 88.min.js
[edit]
[-] 48.min.js
[edit]
[-] customLogin.min.js
[edit]
[-] 19.19.js
[edit]
[-] WilEventDate.WilEventDate.js
[edit]
[-] 24.min.js
[edit]
[-] 5.min.js
[edit]
[-] 64.min.js
[edit]
[-] 32.min.js
[edit]
[-] WilListingSettings.WilListingSettings.js
[edit]
[-] .DS_Store
[edit]
[-] shortcodes.min.js
[edit]
[-] 72.min.js
[edit]
[-] 69.min.js
[edit]
[-] 23.23.js
[edit]
[-] 8.min.js
[edit]
[-] 29.min.js
[edit]
[-] WilSocialSharingCopy.WilSocialSharingCopy.js
[edit]
[-] vendors~WilFieldsGroup~WilSearchFormList.vendors~WilFieldsGroup~WilSearchFormList.js
[edit]
[-] 5.5.js
[edit]
[-] WilokeDirectBankTransfer.min.js
[edit]
[-] 47.min.js
[edit]
[-] 22.22.js
[edit]
[-] WilokeGoogleMap.min.js
[edit]
[-] WilEventWeekly.WilEventWeekly.js
[edit]
[-] addlisting.min.js
[edit]
[-] 87.min.js
[edit]
[-] WilToggleController.WilToggleController.js
[edit]
[-] 91.min.js
[edit]
[-] mapbox.min.js
[edit]
[-] 11.min.js
[edit]
[-] 51.min.js
[edit]
[-] WilListingSettingsGeneral.WilListingSettingsGeneral.js
[edit]
[-] 18.18.js
[edit]
[-] 66.min.js
[edit]
[-] 26.min.js
[edit]
[-] 7.min.js
[edit]
[-] 28.28.js
[edit]
[-] WilCountdown.WilCountdown.js
[edit]
[-] WilSingleNavMyProducts.WilSingleNavMyProducts.js
[edit]
[-] WilRestaurantMenuItem.WilRestaurantMenuItem.js
[edit]
[-] WilGridTerm.WilGridTerm.js
[edit]
[-] 12.12.js
[edit]
[-] WilSocialSharingTumblr.WilSocialSharingTumblr.js
[edit]
[-] WilFieldsGroup.WilFieldsGroup.js
[edit]
[-] 70.min.js
[edit]
[-] RegisterForm.RegisterForm.js
[edit]
[-] 30.min.js
[edit]
[-] 0.0.js
[edit]
[-] SocialsLogin.SocialsLogin.js
[edit]
[-] quick-search.min.js
[edit]
[-] WilMessageBtn.WilMessageBtn.js
[edit]
[-] 1.1.js
[edit]
[-] vendors~WilGoogleMap~WilMapbox.vendors~WilGoogleMap~WilMapbox.js
[edit]
[-] WilokeSubmissionCouponCode.min.js
[edit]
[-] WilokeStripe.min.js
[edit]
[-] 17.min.js
[edit]
[-] 10.10.js
[edit]
[-] WilSingleNavWrapper.WilSingleNavWrapper.js
[edit]
[-] 57.min.js
[edit]
[-] vendors~WilMapbox.vendors~WilMapbox.js
[edit]
[-] becomeAnAuthor.min.js
[edit]
[-] 41.min.js
[edit]
[-] single-event.min.js
[edit]
[-] LoginRegisterPopup.LoginRegisterPopup.js
[edit]
[-] WilSingleNavPosts.WilSingleNavPosts.js
[edit]
[-] 81.min.js
[edit]
[-] general.min.js
[edit]
[-] 76.min.js
[edit]
[-] 36.min.js
[edit]
[-] FavoriteStatistics.min.js
[edit]
[-] 60.min.js
[edit]
[-] HeroSearchForm.min.js
[edit]
[-] WilReportPopup.WilReportPopup.js
[edit]
[-] 1.min.js
[edit]
[-] 20.min.js
[edit]
[-] 4.4.js
[edit]
[-] 20.20.js
[edit]
[-] WilListingSettingsEditNavigation.WilListingSettingsEditNavigation.js
[edit]
[-] WilReviewDiscussionForm.WilReviewDiscussionForm.js
[edit]
[-] 55.min.js
[edit]
[-] 15.min.js
[edit]
[-] 21.21.js
[edit]
[-] RegisterLogin.RegisterLogin.js
[edit]
[-] AppleLogin.AppleLogin.js
[edit]
[-] vendors~WilFieldsGroup.vendors~WilFieldsGroup.js
[edit]
[-] 83.min.js
[edit]
[-] WilSocialSharingWhatsapp.WilSocialSharingWhatsapp.js
[edit]
[-] 18.min.js
[edit]
[-] 58.min.js
[edit]
[-] WilGrid.WilGrid.js
[edit]
[-] WilCommentForm.WilCommentForm.js
[edit]
[-] review.min.js
[edit]
[-] 43.min.js
[edit]
[-] WilFavoriteBtn.WilFavoriteBtn.js
[edit]
[-] 34.min.js
[edit]
[-] default~WilGoogleMap~WilMapbox.default~WilGoogleMap~WilMapbox.js
[edit]
[-] map.min.js
[edit]
[-] 74.min.js
[edit]
[-] WilSocialSharingPinterest.WilSocialSharingPinterest.js
[edit]
[-] LoginForm.LoginForm.js
[edit]
[-] 79.min.js
[edit]
[-] WilSocialSharingVk.WilSocialSharingVk.js
[edit]
[-] 11.11.js
[edit]
[-] 39.min.js
[edit]
[-] 3.min.js
[edit]
[-] 22.min.js
[edit]
[-] SearchFormV2.min.js
[edit]
[-] WilGridItem.WilGridItem.js
[edit]
[-] 62.min.js
[edit]
[-] 0.min.js
[edit]
[-] 21.min.js
[edit]
[-] WilReviewDiscussionItem.WilReviewDiscussionItem.js
[edit]
[-] SearchFormV1.min.js
[edit]
[-] 61.min.js
[edit]
[-] single-google-map.min.js
[edit]
[-] WilSearchFormPriceRange.WilSearchFormPriceRange.js
[edit]
[-] 9.9.js
[edit]
[-] 15.15.js
[edit]
[-] WilPromotionBtn.WilPromotionBtn.js
[edit]
[-] WilSocialSharingTwitter.WilSocialSharingTwitter.js
[edit]
[-] 37.min.js
[edit]
[-] 77.min.js
[edit]
[-] WilSingleNavVideos.WilSingleNavVideos.js
[edit]
[-] resetPassword.min.js
[edit]
[-] 40.min.js
[edit]
[-] WilDateRange.WilDateRange.js
[edit]
[-] WilLayoutSwitch.WilLayoutSwitch.js
[edit]
[-] WilSocialSharingLinkedIn.WilSocialSharingLinkedIn.js
[edit]
[-] 80.min.js
[edit]
[-] LoginRegister.min.js
[edit]
[-] WilSearchFormV1.WilSearchFormV1.js
[edit]
[-] WilSocialSharingLists.WilSocialSharingLists.js
[edit]
[-] WilSocialSharingFacebook.WilSocialSharingFacebook.js
[edit]
[-] single-general.min.js
[edit]
[-] WilSingleListProducts.WilSingleListProducts.js
[edit]
[-] WilSocialSharingStumbleupon.WilSocialSharingStumbleupon.js
[edit]
[-] 56.min.js
[edit]
[-] WilSocialSharingDigg.WilSocialSharingDigg.js
[edit]
[-] vendors~VueGallerySlideshow.vendors~VueGallerySlideshow.js
[edit]
[-] 16.min.js
[edit]
[-] 25.25.js
[edit]
[-] 24.24.js
[edit]
[-] proceedPayment.min.js
[edit]
[-] WilAddToCalendar.WilAddToCalendar.js
[edit]
[-] 38.min.js
[edit]
[-] 78.min.js
[edit]
[-] 6.6.js
[edit]
[-] vendors~WilGoogleMap.vendors~WilGoogleMap.js
[edit]
[-] 63.min.js
[edit]
[-] vendors~single-general.min.js
[edit]
[-] 2.min.js
[edit]
[-] 23.min.js
[edit]
[-] 75.min.js
[edit]
[-] WilGridFeaturedImage.WilGridFeaturedImage.js
[edit]
[-] 35.min.js
[edit]
[-] WilCheckoutPopup.WilCheckoutPopup.js
[edit]
[-] WilMessagePopup.WilMessagePopup.js
[edit]
[-] WilGridSkeleton.WilGridSkeleton.js
[edit]
[-] 59.min.js
[edit]
[-] 82.min.js
[edit]
[-] 19.min.js
[edit]
[-] WilReviewDetail.WilReviewDetail.js
[edit]
[-] WilQuickSearchFormPopup.WilQuickSearchFormPopup.js
[edit]
[-] 42.min.js
[edit]
[-] WilGridCustomSelectField.WilGridCustomSelectField.js
[edit]
[-] 14.min.js
[edit]
[-] Follow.min.js
[edit]
[-] 14.14.js
[edit]
[-] 3.3.js
[edit]
[-] 54.min.js
[edit]
[-] googlemap.min.js
[edit]
[-] WilBoxesIconItem.WilBoxesIconItem.js
[edit]
[-] WilSearchFormList.WilSearchFormList.js
[edit]
[-] vendors~WilSearchFormV1.vendors~WilSearchFormV1.js
[edit]
[-] index.min.js
[edit]
[-] 73.min.js
[edit]
[-] 33.min.js
[edit]
[-] WilGridAverageRating.WilGridAverageRating.js
[edit]
[-] WilReviewDetails.WilReviewDetails.js
[edit]
[-] WilBoxesColorItems.WilBoxesColorItems.js
[edit]
[-] 9.min.js
[edit]
[-] WilSocialSharingReddit.WilSocialSharingReddit.js
[edit]
[-] 28.min.js
[edit]
[-] 68.min.js
[edit]
[-] 2.2.js
[edit]
[-] 16.16.js
[edit]
[-] WilSingleNavPhotos.WilSingleNavPhotos.js
[edit]
[-] WilListingSettingsSidebar.WilListingSettingsSidebar.js
[edit]
[-] UserProfile.UserProfile.js
[edit]
[-] bundle.min.js
[edit]
[-] WilSingleNavCustomContent.WilSingleNavCustomContent.js
[edit]
[-] WilSingleNavTerm.WilSingleNavTerm.js
[edit]
[-] 65.min.js
[edit]
[-] dashboard.min.js
[edit]
[-] 25.min.js
[edit]
[-] 4.min.js
[edit]
[-] single-settings-sidebar.min.js
[edit]
[-] LostPasswordForm.LostPasswordForm.js
[edit]
[-] 12.min.js
[edit]
[-] WilCouponPopup.WilCouponPopup.js
[edit]
[-] 89.min.js
[edit]
[-] 52.min.js
[edit]
[-] vendors~WilAddToCalendar~WilFieldsGroup~WilSearchFormV1.0.js
[edit]
[-] 49.min.js
[edit]
[-] WilMapbox.WilMapbox.js
[edit]
[-] 92.min.js
[edit]
[-] 7.7.js
[edit]
[-] vendors~WilCountdown.vendors~WilCountdown.js
[edit]
[-] WilGoogleMap.WilGoogleMap.js
[edit]
[-] 84.min.js
[edit]
[-] 30.30.js
[edit]
[-] WilReviewAverageRating.WilReviewAverageRating.js
[edit]
[-] WilokePayPal.min.js
[edit]
[-] vendors~WilAddToCalendar~WilSearchFormV1.vendors~WilAddToCalendar~WilSearchFormV1.js
[edit]
[-] no-map-search.min.js
[edit]
[-] 26.26.js
[edit]
[-] 44.min.js
[edit]
[-] single-listing.min.js
[edit]
[-] MagnificGalleryPopup.min.js
[edit]
[-] 27.27.js
[edit]
[-] 31.min.js
[edit]
[-] WilFavorite.WilFavorite.js
[edit]
[-] 71.min.js
[edit]
[-] 27.min.js
[edit]
[-] 6.min.js
[edit]
[-] WilPromotionListingStatistic.WilPromotionListingStatistic.js
[edit]
[-] WilSocialSharingEmail.WilSocialSharingEmail.js
[edit]
[-] 67.min.js
[edit]
[-] WilSingleProductTwo.WilSingleProductTwo.js
[edit]
[-] WilCouponListing.WilCouponListing.js
[edit]
[-] app.min.js
[edit]
[-] single-mapbox.min.js
[edit]
[-] vendors~WilDateRange~WilFieldsGroup.vendors~WilDateRange~WilFieldsGroup.js
[edit]
[-] 90.min.js
[edit]
[-] 50.min.js
[edit]
[-] 10.min.js
[edit]
[-] 46.min.js
[edit]
[-] 17.17.js
[edit]
[-] 8.8.js
[edit]
[-] WilSingleNavContent.WilSingleNavContent.js
[edit]
[-] 86.min.js
[edit]
[-] activeListItem.min.js
[edit]