From 14ef5a64dac003c76e04ac907437c8915d69aa54 Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Thu, 3 Sep 2020 13:06:39 +0100 Subject: [PATCH 1/2] Explicitly add implicitly added semicolon. --- _static/js/custom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_static/js/custom.js b/_static/js/custom.js index 992446318..40e8bce56 100644 --- a/_static/js/custom.js +++ b/_static/js/custom.js @@ -115,7 +115,7 @@ const registerOnScrollEvent = (function(){ $menu.scroll(function() { handleSidebarScroll(); - }) + }); handleMainScroll(window.scrollY); handleSidebarScroll(); From 4e5393150a6687b3b099da416187aaa82bb306bf Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Thu, 3 Sep 2020 14:33:20 +0100 Subject: [PATCH 2/2] Remove unused import from GDNative cpp example SConstruct file. --- tutorials/plugins/gdnative/files/cpp_example/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/plugins/gdnative/files/cpp_example/SConstruct b/tutorials/plugins/gdnative/files/cpp_example/SConstruct index eb113e035..be04e2bd9 100644 --- a/tutorials/plugins/gdnative/files/cpp_example/SConstruct +++ b/tutorials/plugins/gdnative/files/cpp_example/SConstruct @@ -1,5 +1,5 @@ #!python -import os, subprocess +import os opts = Variables([], ARGUMENTS)