|
|
|
@ -23,6 +23,15 @@
|
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
(function () { |
|
|
|
|
|
|
|
|
|
// Prevent click-jacking |
|
|
|
|
try { |
|
|
|
|
if (self == top) { |
|
|
|
|
document.documentElement.style.display = 'block'; |
|
|
|
|
} else { |
|
|
|
|
top.location = self.location; |
|
|
|
|
} |
|
|
|
|
} catch (e) {console.error('CJ protection', e)}; |
|
|
|
|
|
|
|
|
|
window.safeConfirm = function (params, callback) { |
|
|
|
|
if (typeof params === 'string') { |
|
|
|
|
params = {message: params}; |
|
|
|
|