PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wilcity
/
assets
/
production
/
js
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[1],{ /***/ "./assets/dev/js/mixins/TimeHelper.js": /*!********************************************!*\ !*** ./assets/dev/js/mixins/TimeHelper.js ***! \********************************************/ /*! exports provided: TimeHelper, BusinessHourHelper */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TimeHelper\", function() { return TimeHelper; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BusinessHourHelper\", function() { return BusinessHourHelper; });\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ \"./node_modules/@babel/runtime/helpers/defineProperty.js\");\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);\n\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nvar TimeHelper = {\n data: function data() {\n return {\n validDateFormat: [\"YYY-MM-DD\", \"MM-DD-YYYY\", \"MM-DD-YYY\", \"DD/MM/YYY\"]\n };\n },\n computed: {\n dateFormat: function dateFormat() {\n return this.parseDateFormat(WILOKE_GLOBAL.dateFormat);\n },\n timeFormat: function timeFormat() {\n var timeFormat = WILOKE_INLINE_GLOBAL.timeFormat.toLowerCase();\n return timeFormat.replace(\"g\", \"hh\").replace(\"i\", \"mm\").replace(\"a\", \"A\");\n }\n },\n methods: {\n isValidDateFormat: function isValidDateFormat(dateFormat) {\n return this.validDateFormat.includes(dateFormat);\n },\n parseDateFormat: function parseDateFormat(dateFormat) {\n if (this.isValidDateFormat(dateFormat)) {\n return dateFormat;\n }\n\n dateFormat = dateFormat.toLowerCase();\n return dateFormat.replace(\"j f y\", \"DD-MM-YYYY\").replace(\"f j y\", \"MM-DD-YYYY\").replace(\"f. j y\", \"MM-DD-YYYY\").replace(\"j. f y\", \"DD-MM-YYYY\").replace(\"j f y\", \"DD-MM-YYYY\").replace(\"f j, y\", \"MM-DD-YYYY\").replace(\"j f, y\", \"DD-MM-YYYY\").replace(\"y-m-d\", \"YYYY-MM-DD\").replace(\"m/d/y\", \"MM/DD/YYYY\").replace(\"d/m/y\", \"DD/MM/YYYY\").replace(\"yyyy\", \"YYYY\").replace(\"yy\", \"YY\").replace(\"mm\", \"MM\").replace(\"dd\", \"DD\").replace(\"hh:MM\", \"hh:mm\");\n },\n date: function date(timeZone) {\n try {\n var date = !timeZone ? new Date() : new Date().toLocaleString(\"en-US\", {\n timeZone: timeZone\n });\n return new Date(date);\n } catch (e) {\n return false;\n }\n },\n getLocaleTimeString: function getLocaleTimeString(timeZone, hourCycle, isRemoveSecond) {\n // h24, h12\n var format = {\n hour: \"2-digit\",\n minute: \"2-digit\",\n hourCycle: hourCycle\n };\n\n if (!!isRemoveSecond === false) {\n format = _objectSpread({}, format, {\n second: \"2-digit\"\n });\n }\n\n if (timeZone) {\n format = _objectSpread({}, format, {\n timeZone: timeZone\n });\n }\n\n try {\n return new Date().toLocaleTimeString(\"en-US\", format);\n } catch (e) {\n return false;\n }\n },\n getHours: function getHours(timeZone, format, isRemoveSecond) {\n format = !format ? \"h24\" : format;\n var current = this.getLocaleTimeString(timeZone, format, isRemoveSecond);\n\n if (current === false) {\n current = this.getLocaleTimeString(null, format, isRemoveSecond);\n }\n\n return current;\n },\n getDay: function getDay(timeZone) {\n var date = this.date(timeZone);\n\n if (!date) {\n return false;\n }\n\n return date.getDay();\n },\n getLocalString: function getLocalString(timeZone) {\n var date = this.date(timeZone);\n\n if (!date) {\n return false;\n }\n\n return date.toLocaleString();\n }\n }\n}; // this method requires TimeHelpers\n\nvar BusinessHourHelper = {\n data: function data() {\n return {\n dayKeys: [\"sunday\", \"monday\", \"tuesday\", \"wednesday\", \"thursday\", \"friday\", \"saturday\"],\n businessHourToday: {},\n businessHourStatus: {\n always_open: {\n status: \"always_open\",\n text: this.$options.filters.filterTranslation(\"Always Open\", \"always_open\"),\n \"class\": \"color-secondary\"\n },\n open: {\n status: \"open\",\n text: this.$options.filters.filterTranslation(\"Open\", \"open\"),\n \"class\": \"color-secondary\"\n },\n close: {\n status: \"close\",\n text: this.$options.filters.filterTranslation(\"Closed\", \"closed\"),\n \"class\": \"color-quaternary\"\n }\n }\n };\n },\n methods: {\n todayKey: function todayKey(timeZone) {\n var todayKey = this.getDay(timeZone);\n\n if (todayKey === false) {\n todayKey = this.getDay();\n }\n\n return this.dayKeys[todayKey];\n },\n previousDayKey: function previousDayKey(timeZone) {\n var todayIndex = this.getDay(timeZone);\n var todayKey = this.dayKeys[todayKey];\n\n if (todayKey === \"sunday\") {\n return \"saturday\";\n }\n\n return this.dayKeys[todayIndex - 1];\n },\n convertTimeToNumber: function convertTimeToNumber(time) {\n var timestamp;\n\n if (!time) {\n timestamp = parseInt(time, 10);\n } else {\n var parsedTime = time.replace(\":\", \"\").replace(\":\", \"\");\n timestamp = parseInt(parsedTime, 10);\n }\n\n if (isNaN(timestamp)) {\n return 0;\n }\n\n return timestamp;\n },\n isTurnOffBusinessHour: function isTurnOffBusinessHour(businessHour) {\n return businessHour.isOpen === \"no\" || isNaN(businessHour.firstOpenHour) || isNaN(businessHour.firstOpenHour);\n },\n isAlwaysOpen: function isAlwaysOpen(businessHour) {\n return businessHour.firstCloseHour === businessHour.firstOpenHour && businessHour.firstOpenHour === 240000;\n },\n covertBusinessHourToNumber: function covertBusinessHourToNumber(businessHour) {\n return _objectSpread({}, businessHour, {\n firstOpenHour: this.convertTimeToNumber(businessHour.firstOpenHour, true),\n firstCloseHour: this.convertTimeToNumber(businessHour.firstCloseHour, true),\n secondOpenHour: this.convertTimeToNumber(businessHour.secondOpenHour, true),\n secondCloseHour: this.convertTimeToNumber(businessHour.secondCloseHour, true)\n });\n },\n findLastBusinessHour: function findLastBusinessHour(businessHour) {\n var lastOpen = businessHour.secondOpenHour === 0 ? businessHour.firstOpenHour : businessHour.secondOpenHour;\n var lastClose = businessHour.secondCloseHour === 0 ? businessHour.firstCloseHour : businessHour.secondCloseHour;\n return {\n lastOpen: lastOpen,\n lastClose: lastClose\n };\n },\n getCurrentBusinessHourStatus: function getCurrentBusinessHourStatus(businessHours) {\n if (!!businessHours === false || !businessHours.mode || businessHours.mode === \"no_hours_available\") {\n this.businessHourToday = false;\n } else if (businessHours.mode === \"always_open\") {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.always_open);\n } else {\n var todayBusinessHour = _objectSpread({}, businessHours.operating_times[this.todayKey(businessHours.timezone)]);\n\n if (todayBusinessHour.firstCloseHour === \"00:00:00\") {\n todayBusinessHour = _objectSpread({}, todayBusinessHour, {\n firstCloseHour: \"23:59:59\"\n });\n }\n\n if (todayBusinessHour.secondCloseHourUTC === \"00:00:00\") {\n todayBusinessHour = _objectSpread({}, todayBusinessHour, {\n secondCloseHourUTC: \"23:59:59\"\n });\n }\n\n todayBusinessHour = this.covertBusinessHourToNumber(todayBusinessHour);\n\n if (this.isTurnOffBusinessHour(todayBusinessHour)) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.close);\n return true;\n }\n\n if (this.isAlwaysOpen(todayBusinessHour)) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.always_open);\n return true;\n }\n\n var currentHour = this.convertTimeToNumber(this.getHours(businessHours.timezone, \"h24\"));\n var lastCloseHour = todayBusinessHour.firstCloseHour;\n var lastOpenHour = todayBusinessHour.firstOpenHour;\n\n if (currentHour >= todayBusinessHour.firstOpenHour && currentHour <= todayBusinessHour.firstCloseHour) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.open);\n return true;\n }\n\n if (todayBusinessHour.secondCloseHour !== todayBusinessHour.secondOpenHour && !isNaN(todayBusinessHour.secondOpenHour) && !isNaN(todayBusinessHour.secondCloseHour)) {\n lastCloseHour = todayBusinessHour.secondOpenHour;\n lastOpenHour = todayBusinessHour.secondOpenHour;\n\n if (currentHour >= todayBusinessHour.secondOpenHour && currentHour <= todayBusinessHour.secondCloseHour) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.open);\n return true;\n }\n } // This is special case: Some businesses may close over middle night. We allows maximum 05:00 AM, so the business hour must smaller than 05:00:00 AM\n\n\n if (currentHour > lastOpenHour && currentHour < 235959 && lastCloseHour <= 701000) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.open);\n return true;\n }\n\n var prevDayBusinessHour = _objectSpread({}, businessHours.operating_times[this.previousDayKey(businessHours.timezone)]);\n\n prevDayBusinessHour = this.covertBusinessHourToNumber(prevDayBusinessHour);\n\n if (this.isTurnOffBusinessHour(prevDayBusinessHour)) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.close);\n return true;\n }\n\n var prevDayLastBusinessHour = this.findLastBusinessHour(prevDayBusinessHour);\n\n if (prevDayLastBusinessHour.lastClose > 701000) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.close);\n return true;\n }\n\n if (currentHour < prevDayLastBusinessHour.lastClose) {\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.open);\n return true;\n }\n\n this.businessHourToday = _objectSpread({}, this.businessHourStatus.close);\n return true;\n }\n }\n }\n};\n\n\n//# sourceURL=webpack:///./assets/dev/js/mixins/TimeHelper.js?"); /***/ }) }]);
[+]
..
[-] vendors~WilAddToCalendar~WilFieldsGroup~WilSearchFormV1.0.js
[edit]
[-] review.min.js
[edit]
[-] 30.min.js
[edit]
[-] WilDateRange.WilDateRange.js
[edit]
[-] 70.min.js
[edit]
[-] 26.min.js
[edit]
[-] 14.14.js
[edit]
[-] map.min.js
[edit]
[-] 66.min.js
[edit]
[-] shortcodes.min.js
[edit]
[-] 91.min.js
[edit]
[-] 24.24.js
[edit]
[-] single-general.min.js
[edit]
[-] WilSingleNavPosts.WilSingleNavPosts.js
[edit]
[-] 51.min.js
[edit]
[-] 11.min.js
[edit]
[-] 2.min.js
[edit]
[-] WilSocialSharingFacebook.WilSocialSharingFacebook.js
[edit]
[-] WilSocialSharingVk.WilSocialSharingVk.js
[edit]
[-] 47.min.js
[edit]
[-] LoginForm.LoginForm.js
[edit]
[-] WilSocialSharingLinkedIn.WilSocialSharingLinkedIn.js
[edit]
[-] 87.min.js
[edit]
[-] vendors~WilMapbox.vendors~WilMapbox.js
[edit]
[-] vendors~UserProfile.vendors~UserProfile.js
[edit]
[-] no-map-search.min.js
[edit]
[-] SearchFormV2.min.js
[edit]
[-] 72.min.js
[edit]
[-] quick-search.min.js
[edit]
[-] WilReviewDiscussionForm.WilReviewDiscussionForm.js
[edit]
[-] .DS_Store
[edit]
[-] 32.min.js
[edit]
[-] 29.min.js
[edit]
[-] WilCheckoutPopup.WilCheckoutPopup.js
[edit]
[-] WilokeStripe.min.js
[edit]
[-] 69.min.js
[edit]
[-] WilAddToCalendar.WilAddToCalendar.js
[edit]
[-] 0.0.js
[edit]
[-] single-event.min.js
[edit]
[-] single-mapbox.min.js
[edit]
[-] WilSocialSharingCopy.WilSocialSharingCopy.js
[edit]
[-] 64.min.js
[edit]
[-] proceedPayment.min.js
[edit]
[-] 24.min.js
[edit]
[-] LoginRegisterPopup.LoginRegisterPopup.js
[edit]
[-] 25.25.js
[edit]
[-] addlisting.min.js
[edit]
[-] 88.min.js
[edit]
[-] 0.min.js
[edit]
[-] 13.min.js
[edit]
[-] 53.min.js
[edit]
[-] vendors~WilFieldsGroup.vendors~WilFieldsGroup.js
[edit]
[-] WilGrid.WilGrid.js
[edit]
[-] WilListingSettingsEditNavigation.WilListingSettingsEditNavigation.js
[edit]
[-] 48.min.js
[edit]
[-] WilBoxesIconItem.WilBoxesIconItem.js
[edit]
[-] WilToggleController.WilToggleController.js
[edit]
[-] WilListingSettingsGeneral.WilListingSettingsGeneral.js
[edit]
[-] 5.5.js
[edit]
[-] 15.15.js
[edit]
[-] WilGridCustomSelectField.WilGridCustomSelectField.js
[edit]
[-] 85.min.js
[edit]
[-] 45.min.js
[edit]
[-] WilPromotionListingStatistic.WilPromotionListingStatistic.js
[edit]
[-] 39.min.js
[edit]
[-] mapbox.min.js
[edit]
[-] 79.min.js
[edit]
[-] 62.min.js
[edit]
[-] WilSingleNavTerm.WilSingleNavTerm.js
[edit]
[-] 22.min.js
[edit]
[-] 74.min.js
[edit]
[-] 17.17.js
[edit]
[-] vendors~WilFieldsGroup~WilSearchFormList.vendors~WilFieldsGroup~WilSearchFormList.js
[edit]
[-] 4.4.js
[edit]
[-] resetPassword.min.js
[edit]
[-] WilReviewDetails.WilReviewDetails.js
[edit]
[-] 34.min.js
[edit]
[-] general.min.js
[edit]
[-] WilokeGoogleMap.min.js
[edit]
[-] WilGoogleMap.WilGoogleMap.js
[edit]
[-] WilIcon.WilIcon.js
[edit]
[-] LoginRegister.min.js
[edit]
[-] WilRestaurantMenuItem.WilRestaurantMenuItem.js
[edit]
[-] 58.min.js
[edit]
[-] 27.27.js
[edit]
[-] UserProfile.UserProfile.js
[edit]
[-] WilCouponPopup.WilCouponPopup.js
[edit]
[-] 18.min.js
[edit]
[-] 83.min.js
[edit]
[-] single-settings-sidebar.min.js
[edit]
[-] 1.1.js
[edit]
[-] single-google-map.min.js
[edit]
[-] 43.min.js
[edit]
[-] customLogin.min.js
[edit]
[-] LostPasswordForm.LostPasswordForm.js
[edit]
[-] 15.min.js
[edit]
[-] 6.min.js
[edit]
[-] 55.min.js
[edit]
[-] WilSingleNavWrapper.WilSingleNavWrapper.js
[edit]
[-] 20.min.js
[edit]
[-] 60.min.js
[edit]
[-] WilCouponListing.WilCouponListing.js
[edit]
[-] 30.30.js
[edit]
[-] WilSocialSharingPinterest.WilSocialSharingPinterest.js
[edit]
[-] 36.min.js
[edit]
[-] WilSingleNavMyProducts.WilSingleNavMyProducts.js
[edit]
[-] vendors~WilDateRange~WilFieldsGroup.vendors~WilDateRange~WilFieldsGroup.js
[edit]
[-] 26.26.js
[edit]
[-] WilSocialSharingTumblr.WilSocialSharingTumblr.js
[edit]
[-] single-listing.min.js
[edit]
[-] 76.min.js
[edit]
[-] activeListItem.min.js
[edit]
[-] 41.min.js
[edit]
[-] FavoriteStatistics.min.js
[edit]
[-] 81.min.js
[edit]
[-] 9.min.js
[edit]
[-] 16.16.js
[edit]
[-] WilListingSettings.WilListingSettings.js
[edit]
[-] WilFavorite.WilFavorite.js
[edit]
[-] 57.min.js
[edit]
[-] 4.min.js
[edit]
[-] 17.min.js
[edit]
[-] WilSocialSharingEmail.WilSocialSharingEmail.js
[edit]
[-] 54.min.js
[edit]
[-] WilokeDirectBankTransfer.min.js
[edit]
[-] dashboard.min.js
[edit]
[-] 7.min.js
[edit]
[-] 14.min.js
[edit]
[-] WilEventDate.WilEventDate.js
[edit]
[-] 28.28.js
[edit]
[-] 19.min.js
[edit]
[-] 82.min.js
[edit]
[-] 12.12.js
[edit]
[-] index.min.js
[edit]
[-] 59.min.js
[edit]
[-] 42.min.js
[edit]
[-] WilReviewAverageRating.WilReviewAverageRating.js
[edit]
[-] WilSocialSharingReddit.WilSocialSharingReddit.js
[edit]
[-] 35.min.js
[edit]
[-] 75.min.js
[edit]
[-] 22.22.js
[edit]
[-] 9.9.js
[edit]
[-] WilSocialSharingDigg.WilSocialSharingDigg.js
[edit]
[-] app.min.js
[edit]
[-] 78.min.js
[edit]
[-] 38.min.js
[edit]
[-] 23.min.js
[edit]
[-] 63.min.js
[edit]
[-] 18.18.js
[edit]
[-] 19.19.js
[edit]
[-] WilGridFeaturedImage.WilGridFeaturedImage.js
[edit]
[-] WilGridTerm.WilGridTerm.js
[edit]
[-] 16.min.js
[edit]
[-] 5.min.js
[edit]
[-] bundle.min.js
[edit]
[-] WilEventWeekly.WilEventWeekly.js
[edit]
[-] MagnificGalleryPopup.min.js
[edit]
[-] 56.min.js
[edit]
[-] WilBoxesColorItems.WilBoxesColorItems.js
[edit]
[-] RegisterForm.RegisterForm.js
[edit]
[-] WilSingleNavPhotos.WilSingleNavPhotos.js
[edit]
[-] 40.min.js
[edit]
[-] 3.3.js
[edit]
[-] 23.23.js
[edit]
[-] 80.min.js
[edit]
[-] vendors~WilGoogleMap.vendors~WilGoogleMap.js
[edit]
[-] 8.min.js
[edit]
[-] WilCountdown.WilCountdown.js
[edit]
[-] AppleLogin.AppleLogin.js
[edit]
[-] vendors~WilAddToCalendar~WilSearchFormV1.vendors~WilAddToCalendar~WilSearchFormV1.js
[edit]
[-] 6.6.js
[edit]
[-] 13.13.js
[edit]
[-] 77.min.js
[edit]
[-] 37.min.js
[edit]
[-] 29.29.js
[edit]
[-] 61.min.js
[edit]
[-] WilokePayPal.min.js
[edit]
[-] 21.min.js
[edit]
[-] WilFieldsGroup.WilFieldsGroup.js
[edit]
[-] WilMapbox.WilMapbox.js
[edit]
[-] WilReviewDiscussionItem.WilReviewDiscussionItem.js
[edit]
[-] 46.min.js
[edit]
[-] WilReviewDetail.WilReviewDetail.js
[edit]
[-] becomeAnAuthor.min.js
[edit]
[-] 86.min.js
[edit]
[-] WilSearchFormPriceRange.WilSearchFormPriceRange.js
[edit]
[-] WilGridAverageRating.WilGridAverageRating.js
[edit]
[-] 90.min.js
[edit]
[-] 11.11.js
[edit]
[-] WilSocialSharingTwitter.WilSocialSharingTwitter.js
[edit]
[-] 3.min.js
[edit]
[-] 10.min.js
[edit]
[-] 7.7.js
[edit]
[-] 50.min.js
[edit]
[-] 67.min.js
[edit]
[-] 2.2.js
[edit]
[-] WilListingSettingsSidebar.WilListingSettingsSidebar.js
[edit]
[-] 27.min.js
[edit]
[-] vendors~WilCountdown.vendors~WilCountdown.js
[edit]
[-] 21.21.js
[edit]
[-] HeroSearchForm.min.js
[edit]
[-] WilSingleNavCustomContent.WilSingleNavCustomContent.js
[edit]
[-] SocialsLogin.SocialsLogin.js
[edit]
[-] WilokeSubmissionCouponCode.min.js
[edit]
[-] Follow.min.js
[edit]
[-] default~WilGoogleMap~WilMapbox.default~WilGoogleMap~WilMapbox.js
[edit]
[-] WilMessageBtn.WilMessageBtn.js
[edit]
[-] WilReportPopup.WilReportPopup.js
[edit]
[-] WilGridSkeleton.WilGridSkeleton.js
[edit]
[-] WilMessagePopup.WilMessagePopup.js
[edit]
[-] WilSocialSharingStumbleupon.WilSocialSharingStumbleupon.js
[edit]
[-] 71.min.js
[edit]
[-] 31.min.js
[edit]
[-] vendors~VueGallerySlideshow.vendors~VueGallerySlideshow.js
[edit]
[-] 84.min.js
[edit]
[-] WilSearchFormV1.WilSearchFormV1.js
[edit]
[-] SearchFormV1.min.js
[edit]
[-] vendors~WilGoogleMap~WilMapbox.vendors~WilGoogleMap~WilMapbox.js
[edit]
[-] WilSearchFormList.WilSearchFormList.js
[edit]
[-] 44.min.js
[edit]
[-] WilLayoutSwitch.WilLayoutSwitch.js
[edit]
[-] WilSingleNavContent.WilSingleNavContent.js
[edit]
[-] WilSocialSharingWhatsapp.WilSocialSharingWhatsapp.js
[edit]
[-] WilGridItem.WilGridItem.js
[edit]
[-] 52.min.js
[edit]
[-] 89.min.js
[edit]
[-] 12.min.js
[edit]
[-] 1.min.js
[edit]
[-] 20.20.js
[edit]
[-] WilFavoriteBtn.WilFavoriteBtn.js
[edit]
[-] 92.min.js
[edit]
[-] WilSingleNavVideos.WilSingleNavVideos.js
[edit]
[-] WilCommentForm.WilCommentForm.js
[edit]
[-] 8.8.js
[edit]
[-] 49.min.js
[edit]
[-] WilPromotionBtn.WilPromotionBtn.js
[edit]
[-] WilSocialSharingLists.WilSocialSharingLists.js
[edit]
[-] WilSingleListProducts.WilSingleListProducts.js
[edit]
[-] googlemap.min.js
[edit]
[-] WilQuickSearchFormPopup.WilQuickSearchFormPopup.js
[edit]
[-] vendors~single-general.min.js
[edit]
[-] 10.10.js
[edit]
[-] 25.min.js
[edit]
[-] WilSingleProductTwo.WilSingleProductTwo.js
[edit]
[-] 65.min.js
[edit]
[-] RegisterLogin.RegisterLogin.js
[edit]
[-] 33.min.js
[edit]
[-] 73.min.js
[edit]
[-] vendors~WilSearchFormV1.vendors~WilSearchFormV1.js
[edit]
[-] 68.min.js
[edit]
[-] 28.min.js
[edit]