mirror of
https://bitbucket.org/skobkin/chrome_point_plus.git
synced 2024-11-23 18:56:04 +00:00
Some fixes.
This commit is contained in:
parent
f7d399c41a
commit
eb6b67f612
|
@ -719,10 +719,7 @@ function create_comment_elements(commentData, onCommentCreated) {
|
||||||
// Картинки с бурятников
|
// Картинки с бурятников
|
||||||
var booru_picture_count = 0;
|
var booru_picture_count = 0;
|
||||||
function load_all_booru_images() {
|
function load_all_booru_images() {
|
||||||
$('.post-content a').each(function(num, obj) {
|
$('.post-content a:not(.booru_pic)').each(function(num, obj) {
|
||||||
if ($(obj).hasClass('booru_pic')) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var href = obj.href;
|
var href = obj.href;
|
||||||
var n = null;
|
var n = null;
|
||||||
|
@ -822,10 +819,7 @@ function mark_unread_post() {
|
||||||
|
|
||||||
// Webm
|
// Webm
|
||||||
function parse_webm(current_options) {
|
function parse_webm(current_options) {
|
||||||
$('.post-content a').each(function(num, obj) {
|
$('.post-content a:not(.booru_pic)').each(function(num, obj) {
|
||||||
if ($(obj).hasClass('booru_pic')) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var href = obj.href;
|
var href = obj.href;
|
||||||
var n = null;
|
var n = null;
|
||||||
|
@ -849,10 +843,7 @@ function parse_webm(current_options) {
|
||||||
|
|
||||||
// Видео
|
// Видео
|
||||||
function parse_all_videos(current_options) {
|
function parse_all_videos(current_options) {
|
||||||
$('.post-content a').each(function(num, obj) {
|
$('.post-content a:not(.booru_pic)').each(function(num, obj) {
|
||||||
if ($(obj).hasClass('booru_pic')) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var href = obj.href;
|
var href = obj.href;
|
||||||
var n = null;
|
var n = null;
|
||||||
|
@ -1093,7 +1084,7 @@ function space_key_event() {
|
||||||
|
|
||||||
var posts = $('.content-wrap > .post');
|
var posts = $('.content-wrap > .post');
|
||||||
for (var i = 0; i < posts.length; i++) {
|
for (var i = 0; i < posts.length; i++) {
|
||||||
var this_top_px = Math.floor($(posts[i]).offset().top);
|
var this_top_px = Math.floor(posts.eq(i).offset().top);
|
||||||
if (this_top_px > scroll_current) {
|
if (this_top_px > scroll_current) {
|
||||||
$('body').animate({
|
$('body').animate({
|
||||||
'scrollTop': this_top_px
|
'scrollTop': this_top_px
|
||||||
|
@ -1127,12 +1118,6 @@ var draft_save_busy = false;
|
||||||
*/
|
*/
|
||||||
var draft_save_last_time = null;
|
var draft_save_last_time = null;
|
||||||
|
|
||||||
/**
|
|
||||||
* Is draft now saving or not
|
|
||||||
* @type {boolean}
|
|
||||||
*/
|
|
||||||
var draft_save_busy = false;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Is there any setTimeout'ed handlers
|
* Is there any setTimeout'ed handlers
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
|
@ -1590,7 +1575,7 @@ function twitter_tweet_embedding_wait_for_ready_injected() {
|
||||||
function twitter_tweet_embedding_parse_links() {
|
function twitter_tweet_embedding_parse_links() {
|
||||||
// Обрабатываем все твиты
|
// Обрабатываем все твиты
|
||||||
var twitter_tweet_count = 0;
|
var twitter_tweet_count = 0;
|
||||||
$('.post-content a').not('.booru_pic').each(function(num, obj) {
|
$('.post-content a:not(.booru_pic)').each(function(num, obj) {
|
||||||
var href = obj.href;
|
var href = obj.href;
|
||||||
var n;
|
var n;
|
||||||
|
|
||||||
|
@ -1622,7 +1607,7 @@ function twitter_tweet_embedding_parse_links() {
|
||||||
function instagram_posts_embedding_init(options) {
|
function instagram_posts_embedding_init(options) {
|
||||||
var regex = new RegExp('^https?://(www\\.)?instagram\\.com/p/([\\w-]+)/?', 'i');
|
var regex = new RegExp('^https?://(www\\.)?instagram\\.com/p/([\\w-]+)/?', 'i');
|
||||||
|
|
||||||
$('.post-content a').not('.booru_pic').each(function(num, $link) {
|
$('.post-content a:not(.booru_pic)').each(function(num, $link) {
|
||||||
var href = $link.href;
|
var href = $link.href;
|
||||||
var n;
|
var n;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue