mirror of
https://bitbucket.org/skobkin/chrome_point_plus.git
synced 2024-11-23 18:56:04 +00:00
Some refucktoring.
This commit is contained in:
parent
fbec7b4a2d
commit
b4a039843d
|
@ -213,14 +213,6 @@ div#markItUpText-input {
|
||||||
-webkit-filter: blur(30px);
|
-webkit-filter: blur(30px);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* point-plus-debug */
|
|
||||||
.point-plus-debug{
|
|
||||||
float: right;
|
|
||||||
display: block;
|
|
||||||
color: rgba(255,255,255,.75);
|
|
||||||
padding: 10px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post-tag-nsfw.hide-nsfw-posts,
|
.post-tag-nsfw.hide-nsfw-posts,
|
||||||
.post-tag-сиськи.hide-nsfw-posts{
|
.post-tag-сиськи.hide-nsfw-posts{
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -237,11 +229,10 @@ div#markItUpText-input {
|
||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* point-plus-debug */
|
||||||
|
#point-plus-debug{
|
||||||
|
float: right;
|
||||||
|
display: block;
|
||||||
|
color: rgba(255,255,255,.75);
|
||||||
|
padding: 10px 0px;
|
||||||
|
}
|
||||||
|
|
|
@ -9,23 +9,15 @@ $(document).ready(function() {
|
||||||
console.info('Point+ %s', getVersion());
|
console.info('Point+ %s', getVersion());
|
||||||
|
|
||||||
// Проверяем, загрузились ли мы
|
// Проверяем, загрузились ли мы
|
||||||
// @todo: Убрать это говно и нормально пилить расширение не принося пользователям костыли
|
var point_plus_debug = $('#point-plus-debug');
|
||||||
// Хочешь детект? Делай невидимый элемент где-нибудь в подвале. И айдишник, а не класс. Их искать быстрее.
|
|
||||||
// Хочешь показать пользователю обработку - делай индикатор и встраивай в интерфейс сайта.
|
|
||||||
var point_plus_debug = $('.point-plus-debug');
|
|
||||||
if (point_plus_debug.length > 0) {
|
if (point_plus_debug.length > 0) {
|
||||||
console.info('Point+ already loaded, version: %s', point_plus_debug.attr('data-point-plus-version'));
|
console.error('Point+ %s already loaded.', point_plus_debug.data('point-plus-version'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
point_plus_debug = null;
|
$('<div id="point-plus-debug">').attr({
|
||||||
var new_div = document.createElement('div');
|
|
||||||
$(new_div).attr({
|
|
||||||
'data-point-plus-version': getVersion()
|
'data-point-plus-version': getVersion()
|
||||||
}).addClass('point-plus-debug').text('Point+ v' + getVersion() + ' loading...');
|
}).text('Point+ ' + getVersion() + ' loading...')
|
||||||
var obj = $('#user-menu-cb')[0];
|
.insertBefore('#user-menu-cb');
|
||||||
obj.parentElement.insertBefore(new_div, obj);
|
|
||||||
new_div = null;
|
|
||||||
obj = null;
|
|
||||||
|
|
||||||
// Черновики. Ставим хандлер и восстанавливаем предыдущее состояние
|
// Черновики. Ставим хандлер и восстанавливаем предыдущее состояние
|
||||||
draft_set_save_handler();
|
draft_set_save_handler();
|
||||||
|
@ -529,7 +521,7 @@ $(document).ready(function() {
|
||||||
set_space_key_skip_handler();
|
set_space_key_skip_handler();
|
||||||
}
|
}
|
||||||
|
|
||||||
$('.point-plus-debug').fadeOut(500);
|
$('#point-plus-debug').fadeOut(1000);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue