|
@@ -11,7 +11,7 @@ function load_activity(feedurl, divid) {
|
|
if (result==null) return;
|
|
if (result==null) return;
|
|
for (let i = 0; i < result.feed.entry.length; i++) {
|
|
for (let i = 0; i < result.feed.entry.length; i++) {
|
|
let entry = result.feed.entry[i];
|
|
let entry = result.feed.entry[i];
|
|
- if (entry.title.indexOf("git commit") != -1)
|
|
|
|
|
|
+ if (entry.title.indexOf("git commit") !== -1)
|
|
continue;
|
|
continue;
|
|
loaded += 1;
|
|
loaded += 1;
|
|
if (loaded > nb_display)
|
|
if (loaded > nb_display)
|
|
@@ -44,7 +44,7 @@ function google_analytics() {
|
|
let ga = document.createElement('script');
|
|
let ga = document.createElement('script');
|
|
ga.type = 'text/javascript';
|
|
ga.type = 'text/javascript';
|
|
ga.async = true;
|
|
ga.async = true;
|
|
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
|
|
+ ga.src = ('https:' === document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
let s = document.getElementsByTagName('script')[0];
|
|
let s = document.getElementsByTagName('script')[0];
|
|
s.parentNode.insertBefore(ga, s);
|
|
s.parentNode.insertBefore(ga, s);
|
|
}
|
|
}
|
|
@@ -67,7 +67,7 @@ clipboard.on('success', function(e) {
|
|
|
|
|
|
$(function() {
|
|
$(function() {
|
|
$('a[href*=\\#]:not([href=\\#])').click(function() {
|
|
$('a[href*=\\#]:not([href=\\#])').click(function() {
|
|
- if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
|
|
|
|
|
|
+ if (location.pathname.replace(/^\//,'') === this.pathname.replace(/^\//,'') && location.hostname === this.hostname) {
|
|
let target = $(this.hash);
|
|
let target = $(this.hash);
|
|
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
|
|
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
|
|
if (target.length) {
|
|
if (target.length) {
|