From 1335482b36b5a44c5f070cf5245240f42999c144 Mon Sep 17 00:00:00 2001 From: Shane Tomlinson <stomlinson@mozilla.com> Date: Tue, 4 Sep 2012 11:18:40 +0100 Subject: [PATCH] Allow siteName and siteLogo when using navigator.id.get --- resources/static/include_js/include.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/static/include_js/include.js b/resources/static/include_js/include.js index 2efabd0e1..f6d35724d 100644 --- a/resources/static/include_js/include.js +++ b/resources/static/include_js/include.js @@ -1246,6 +1246,8 @@ opts.termsOfService = passedOptions.termsOfService || undefined; opts.privacyURL = passedOptions.privacyURL || undefined; opts.tosURL = passedOptions.tosURL || undefined; + opts.siteName = passedOptions.siteName || undefined; + opts.siteLogo = passedOptions.siteLogo || undefined; if (checkDeprecated(passedOptions, "silent")) { // Silent has been deprecated, do nothing. Placing the check here -- GitLab