Bloom.Workspace.FeedbackDialog.Show C# (CSharp) Method

Show() public method

public Show ( ) : void
return void
        public void Show()
        {
            // Ideally, we would load the page in our own window, but we need to deal with the popup and maybe cookie issues:
            //		* didn't work well with google-login
            //		* geckofx9 had various errors related to popup windows (e.g. login via google), and thos popup windows were yucky anyhow

            //ShowDialog();

            //So now, we just run your browser

            var url = UrlLookup.LookupUrl(UrlType.UserSuggestions);
            Process.Start(url);
        }