1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

fine tuning warning page

This commit is contained in:
gorhill 2015-03-30 13:10:29 -04:00
parent 53d96cc88f
commit a1da6df4d6
4 changed files with 62 additions and 23 deletions

View File

@ -512,8 +512,16 @@
"description": "English: Close this window"
},
"docblockedProceed": {
"message": "Proceed at your own risk",
"description": "English: Proceed at your own risk"
"message": "Disable strict blocking for {{hostname}}",
"description": "English: Disable strict blocking for {{hostname}} ..."
},
"docblockedDisableTemporary": {
"message": "Temporarily",
"description": "English: Temporarily"
},
"docblockedDisablePermanent": {
"message": "Permanently",
"description": "English: Permanently"
},
"dummy":{
"message":"This entry must be the last one",

View File

@ -13,14 +13,11 @@ body > div {
margin: 1.5em 0;
}
body > div > p {
margin: 2px 0;
margin: 4px 0;
}
body > div > p:first-child {
margin: 1.5em 0 0 0;
}
body > div > p:last-child {
margin: 0 0 1.5em 0;
}
.code {
background-color: rgba(0, 0, 0, 0.1);
display: inline-block;
@ -30,7 +27,7 @@ body > div > p:last-child {
}
button {
cursor: pointer;
margin: 0 1em;
margin: 0 1em 0.25em 1em;
padding: 0.25em 0.5em;
font-size: inherit;
}
@ -66,8 +63,13 @@ button {
</div>
<div>
<p data-i18n="docblockedProceed"></p>
<p><a id="yolo" class="what" href></a></p>
<p id="proceed"></p>
<p><button id="proceedTemporary" data-i18n="docblockedDisableTemporary" type="button"></button>
<button id="proceedPermanent" data-i18n="docblockedDisablePermanent" type="button"></button></p>
</div>
<div style="display: none;">
<span id="proceedTemplate"><span></span><span class="code"></span><span></span></span>
</div>
<script src="js/vapi-common.js"></script>

View File

@ -30,30 +30,58 @@
/******************************************************************************/
var messager = vAPI.messaging.channel('document-blocked.js');
var details = {};
var matches = /details=([^&]+)/.exec(window.location.search);
if ( matches === null ) {
return;
}
var details = JSON.parse(atob(matches[1]));
(function() {
var matches = /details=([^&]+)/.exec(window.location.search);
if ( matches === null ) {
return;
}
details = JSON.parse(atob(matches[1]));
})();
/******************************************************************************/
var yolo = function(ev) {
var onReady = function() {
window.location.replace(details.url);
};
var proceedToURL = function() {
window.location.replace(details.url);
};
/******************************************************************************/
var proceedTemporary = function() {
messager.send({
what: 'temporarilyWhitelistDocument',
url: details.url
}, onReady);
ev.preventDefault();
}, proceedToURL);
};
/******************************************************************************/
var proceedPermanent = function() {
messager.send({
what: 'toggleHostnameSwitch',
name: 'dontBlockDoc',
hostname: details.hn,
state: true
}, proceedToURL);
};
/******************************************************************************/
(function() {
var matches = /^(.*)\{\{hostname\}\}(.*)$/.exec(vAPI.i18n('docblockedProceed'));
if ( matches === null ) {
return;
}
var proceed = uDom('#proceedTemplate').clone();
proceed.descendants('span:nth-of-type(1)').text(matches[1]);
proceed.descendants('span:nth-of-type(2)').text(details.hn);
proceed.descendants('span:nth-of-type(3)').text(matches[2]);
uDom('#proceed').append(proceed);
})();
/******************************************************************************/
uDom('.what').text(details.url);
uDom('#why').text(details.why.slice(3));
@ -65,8 +93,8 @@ if ( window.history.length > 1 ) {
uDom('#back').css('display', 'none');
}
uDom('#yolo').attr('href', details.url)
.on('click', yolo);
uDom('#proceedTemporary').attr('href', details.url).on('click', proceedTemporary);
uDom('#proceedPermanent').attr('href', details.url).on('click', proceedPermanent);
})();

View File

@ -235,6 +235,7 @@ var onBeforeRootFrameRequest = function(details) {
// Blocked
var query = btoa(JSON.stringify({
url: requestURL,
hn: requestHostname,
why: result
}));