Skip to content

Commit

Permalink
+ автоматический переброс с личного кабинета в систему новостей, если…
Browse files Browse the repository at this point in the history
… выполняется репост из ВК
  • Loading branch information
atnartur committed May 25, 2018
1 parent 9145d7e commit 07a30ad
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion js/fixtures/admin/page/news_block.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
if ($('body').html().indexOf('Not Found') !== -1)
location.href = '/';
});
})(jQuery)
})(jQuery);
1 change: 0 additions & 1 deletion js/fixtures/admin/page/news_block_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

$(document).ready(function(){
chrome.storage.local.get('vk_post_id', function(res){
console.log(res, $('#contentwrap a:eq(1)'))
if (typeof res.vk_post_id !== 'undefined')
location.href = $('#contentwrap a:eq(1)').attr('href');
});
Expand Down
7 changes: 7 additions & 0 deletions js/fixtures/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$(document).ready(function(){
chrome.storage.local.get('vk_post_id', function(res){
// если у нас есть пост с ВК для выполнения репоста на едутатар и мы авторизованы - делаем редирект на новости
if (typeof res.vk_post_id !== 'undefined' && $('body').text().indexOf('Личный кабинет') !== -1)
location.href = '/admin/page/news_block';
});
});
16 changes: 14 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "ClienD extension",
"short_name": "ClienD-ext",
"description": "Расширение исправляет некоторые ошибки в интерфейсе сайта edu.tatar.ru и добавляет несколько функций к веб-приложению",
"version": "1.2.10",
"version": "1.3.0",
"author": "ClienDDev",
"homepage_url": "http://ext.cliend.ru",
"icons": {
Expand Down Expand Up @@ -102,7 +102,19 @@
"/js/fixtures/admin/page/news/edit/extension.js"
],
"run_at": "document_end"
},
},
{
"matches": [
"https://edu.tatar.ru/",
"http://edu.tatar.ru/"
],
"js": [
"/libs/jquery/dist/jquery.min.js",
"/js/common/base.js",
"/js/fixtures/index.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://edu.tatar.ru/admin/page/news?news_block_id=*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cliend-ext",
"version": "1.2.9",
"version": "1.3.0",
"description": "Расширение для [Портала электронного образования Республики Татарстан](http://edu.tatar.ru). Вносит небольшие улучшения на портале (подробный список ниже). Является подпроектом [ClienD](http://cliend.ru).",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 07a30ad

Please sign in to comment.