aboutsummaryrefslogtreecommitdiff
path: root/p
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-03-15 15:08:44 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-03-15 15:08:44 +0100
commit19fb901cb417c13be0ac3019d1bb1e7b09d08b37 (patch)
tree7a6c1ed4001f1ddf73294213b56101fda2880ddc /p
parent53d31c022dc107f7ad712fa91e4266f1e12d3c01 (diff)
Small corrections previous pull requests
https://github.com/marienfressinaud/FreshRSS/issues/457 https://github.com/marienfressinaud/FreshRSS/pull/459 https://github.com/marienfressinaud/FreshRSS/issues/422 https://github.com/marienfressinaud/FreshRSS/pull/461
Diffstat (limited to 'p')
-rw-r--r--p/scripts/main.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js
index bee56d1b3..a03be85eb 100644
--- a/p/scripts/main.js
+++ b/p/scripts/main.js
@@ -968,12 +968,12 @@ function init_print_action() {
function init_share_observers() {
shares = $('.form-group:not(".form-actions")').length;
- $('.post').on('click', '.share.remove', function(e){
+ $('.post').on('click', '.share.remove', function(e) {
e.preventDefault();
$(this).parents('.form-group').remove();
});
- $('.share.add').on('click',function(e){
+ $('.share.add').on('click', function(e) {
e.preventDefault();
var opt = $(this).siblings('select').find(':selected');
var row = $(this).parents('form').data(opt.data('form'));
@@ -984,10 +984,10 @@ function init_share_observers() {
$(this).parents('.form-actions').before(row);
shares++;
});
-};
+}
function init_feed_observers() {
- $('select[id="category"]').on('change', function(){
+ $('select[id="category"]').on('change', function() {
var detail = $(this).parent('li').next('li');
if ($(this).val() === 'nc') {
detail.show();
@@ -996,18 +996,18 @@ function init_feed_observers() {
detail.hide();
}
});
-};
+}
function init_password_observers() {
- $('input[type="password"] + a.btn.toggle-password').on('click', function(e){
+ $('input[type="password"] + a.btn.toggle-password').on('click', function(e) {
e.preventDefault();
var passwordField = $(this).siblings('input[type="password"]');
- passwordField.attr('type','text');
- setTimeout(function(){
- passwordField.attr('type','password');
- },2000);
+ passwordField.attr('type', 'text');
+ setTimeout(function() {
+ passwordField.attr('type', 'password');
+ }, 2000);
});
-};
+}
function init_all() {
if (!(window.$ && window.url_freshrss && ((!full_lazyload) || $.fn.lazyload))) {