From eb6b67f61294700320eb5792d20bffba1eb15ef7 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Sat, 31 Jan 2015 08:10:54 +0300 Subject: [PATCH] Some fixes. --- chrome_point_plus/js/point-plus.js | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/chrome_point_plus/js/point-plus.js b/chrome_point_plus/js/point-plus.js index 7bac73b..30b9824 100644 --- a/chrome_point_plus/js/point-plus.js +++ b/chrome_point_plus/js/point-plus.js @@ -719,10 +719,7 @@ function create_comment_elements(commentData, onCommentCreated) { // Картинки с бурятников var booru_picture_count = 0; function load_all_booru_images() { - $('.post-content a').each(function(num, obj) { - if ($(obj).hasClass('booru_pic')) { - return; - } + $('.post-content a:not(.booru_pic)').each(function(num, obj) { var href = obj.href; var n = null; @@ -822,10 +819,7 @@ function mark_unread_post() { // Webm function parse_webm(current_options) { - $('.post-content a').each(function(num, obj) { - if ($(obj).hasClass('booru_pic')) { - return; - } + $('.post-content a:not(.booru_pic)').each(function(num, obj) { var href = obj.href; var n = null; @@ -849,10 +843,7 @@ function parse_webm(current_options) { // Видео function parse_all_videos(current_options) { - $('.post-content a').each(function(num, obj) { - if ($(obj).hasClass('booru_pic')) { - return; - } + $('.post-content a:not(.booru_pic)').each(function(num, obj) { var href = obj.href; var n = null; @@ -1093,7 +1084,7 @@ function space_key_event() { var posts = $('.content-wrap > .post'); 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) { $('body').animate({ 'scrollTop': this_top_px @@ -1127,12 +1118,6 @@ var draft_save_busy = false; */ 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 * @type {boolean} @@ -1590,7 +1575,7 @@ function twitter_tweet_embedding_wait_for_ready_injected() { function twitter_tweet_embedding_parse_links() { // Обрабатываем все твиты 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 n; @@ -1622,7 +1607,7 @@ function twitter_tweet_embedding_parse_links() { function instagram_posts_embedding_init(options) { 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 n;