summaryrefslogtreecommitdiff
path: root/indra/newview/llfacebookconnect.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-07-18 21:05:41 -0700
committerMerov Linden <merov@lindenlab.com>2013-07-18 21:05:41 -0700
commit16709a9bef3ebf24c60eac29f7c5cb743e855da1 (patch)
tree0f050de27aa62b71c7b5b901c9cf96fc550a965d /indra/newview/llfacebookconnect.cpp
parent883fca9d5a7c5db10f100b05b5312818233e342c (diff)
ACME-734 : WIP : Implemented changes for https URL in the address bar and added options to web floater to hide history and disable buttons
Diffstat (limited to 'indra/newview/llfacebookconnect.cpp')
-rw-r--r--indra/newview/llfacebookconnect.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llfacebookconnect.cpp b/indra/newview/llfacebookconnect.cpp
index ac92fc6ed5..eb9b93161c 100644
--- a/indra/newview/llfacebookconnect.cpp
+++ b/indra/newview/llfacebookconnect.cpp
@@ -287,7 +287,11 @@ void LLFacebookConnect::openFacebookWeb(std::string url)
{
// Open the URL in an internal browser window without navigation UI
LLFloaterWebContent::Params p;
- p.url(url).show_chrome(false);
+ p.url(url).show_chrome(true);
+ p.url(url).allow_address_entry(false);
+ p.url(url).allow_back_forward_navigation(false);
+ p.url(url).save_url_history(false);
+ p.url(url).trusted_content(true);
LLFloaterReg::showInstance("fbc_web", p);
//LLUrlAction::openURLExternal(url);