BaconographyPortable.ViewModel.LinkViewModel.GotoComments C# (CSharp) Method

GotoComments() public method

public GotoComments ( ) : void
return void
		public void GotoComments()
		{
            if (_settingsService.TapForComments)
            {
			    NavigateToCommentsImpl(this);
                if (IsExtendedOptionsShown)
                    IsExtendedOptionsShown = false;
            }
            else
            {
                IsExtendedOptionsShown = !IsExtendedOptionsShown;
            }
		}