| 1 |
"use strict"; |
| 2 |
|
| 3 |
; |
| 4 |
(function ($, window, document, undefined) { |
| 5 |
'use strict'; |
| 6 |
|
| 7 |
var deleteCookie = function deleteCookie(name) { |
| 8 |
document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;"; |
| 9 |
}; |
| 10 |
$(document).ready(function () { |
| 11 |
deleteCookie('merchant_countdown_timer_cool_off_date'); |
| 12 |
deleteCookie('merchant_countdown_timer_date'); |
| 13 |
}); |
| 14 |
})(jQuery, window, document); |