From da8f622ab7f8146b6953d5f3911949c11ea71119 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Fri, 23 Dec 2016 02:01:26 -0600 Subject: [PATCH] Fix typo, remove debug logging. --- js/lightdm-uestibulum.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/js/lightdm-uestibulum.js b/js/lightdm-uestibulum.js index 01bb7f5..704a5a9 100644 --- a/js/lightdm-uestibulum.js +++ b/js/lightdm-uestibulum.js @@ -1,7 +1,7 @@ (function() { var U = window.uestibulum = { - config { theme: 'jdb', hidpi: true }, + config: { theme: 'jdb', hidpi: true }, themes: {} }; @@ -277,10 +277,7 @@ }); - $(document).ready(function() { - U.uiView = new U.UIView(); - console.log('window: ' + Object.getOwnPropertyNames(window).join(', ')); - }); + $(document).ready(function() { U.uiView = new U.UIView(); }); })();