From: Adam Duskett Date: Mon, 4 Feb 2019 14:27:31 +0000 (+0100) Subject: docs/website/js/buildroot.js: fix unterminated statements X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fcf418d0a49c843b27a695f7647556535b50ac5f;p=buildroot.git docs/website/js/buildroot.js: fix unterminated statements Some statements are missing their semicolons. Signed-off-by: Adam Duskett Acked-by: Tested-by: Signed-off-by: Thomas Petazzoni --- diff --git a/docs/website/js/buildroot.js b/docs/website/js/buildroot.js index 1b08f9b4df..48fafa67ac 100644 --- a/docs/website/js/buildroot.js +++ b/docs/website/js/buildroot.js @@ -19,7 +19,7 @@ function load_activity(feedurl, divid) { let div = document.createElement("p"); let link = document.createElement("a"); let d = new Date(entry.published); - let data = '[' + d.toLocaleDateString() + '] ' + entry.title + let data = '[' + d.toLocaleDateString() + '] ' + entry.title; let text = document.createTextNode(data); link.appendChild(text); link.title = entry.title; @@ -58,7 +58,7 @@ let clipboard = new Clipboard('.btn'); $(function () { $('[data-toggle="tooltip"]').tooltip() -}) +}); clipboard.on('success', function(e) { e.clearSelection(); @@ -83,7 +83,7 @@ $(function() { jQuery(document).ready(function($) { let url = window.location.href; // Get the basename of the URL - url = url.split(/[\\/]/).pop() + url = url.split(/[\\/]/).pop(); $('.nav a[href="/' + url + '"]').parent().addClass('active'); load_activity("http://buildroot-busybox.2317881.n4.nabble.com/Buildroot-busybox-ft2.xml", "mailing-list-activity");