Version bumped 0.0.0.8, changed slide image

This commit is contained in:
Ilya Ig. Petrov 2016-02-05 19:52:04 +05:00
parent 7c4e78efac
commit c9cfdefc1b
4 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

View File

@ -3,7 +3,7 @@
"name": "Ненавязчивый РосКомНадзор",
"description": "Аргументы против цензуры: https://git.io/vEkI9",
"version": "0.0.0.7",
"version": "0.0.0.8",
"icons": {
"128": "/icons/ribbon128.png"
},

View File

@ -216,7 +216,7 @@ function httpGet(url, cb) {
var ifAsync = true;
req.open('GET', url, ifAsync);
req.onload = event => {
if (!ifSuccessfulCode(req.status)) {
if ( !ifSuccessfulCode(req.status) ) {
req.clarification = {message: 'Получен ответ с неудачным HTTP-кодом '+req.status+ '.'};
return cb(req);
}