Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit d0d3d53

Browse files
committed
Remove Extra Slash On Contact Me Button
Fixes #403
1 parent 5ccdc58 commit d0d3d53

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

CodeHub.iOS/CodeHub.iOS.csproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<ConsolePause>false</ConsolePause>
4545
<CodesignKey>iPhone Developer</CodesignKey>
4646
<MtouchUseThumb>true</MtouchUseThumb>
47-
<MtouchArch>ARMv7</MtouchArch>
47+
<MtouchArch>ARM64</MtouchArch>
4848
<MtouchDebug>true</MtouchDebug>
4949
<BuildIpa>true</BuildIpa>
5050
<IpaPackageName>
@@ -625,12 +625,6 @@
625625
<ImageAsset Include="Resources\Images.xcassets\Avatar.imageset\Contents.json" />
626626
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\appstore.png" />
627627
</ItemGroup>
628-
<ItemGroup>
629-
<XamarinComponentReference Include="sdwebimage">
630-
<Version>3.7.5</Version>
631-
<Visible>False</Visible>
632-
</XamarinComponentReference>
633-
</ItemGroup>
634628
<ItemGroup>
635629
<ProjectReference Include="..\CodeHub.Core\CodeHub.Core.csproj">
636630
<Project>{B7970173-9022-466B-B57A-7AB1E1F3145F}</Project>

CodeHub/WebViews/UpgradeDetailsWebView.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,7 @@ public override void Execute()
100100
"e a look at the detailed description for each feature below. \n If you\'re " +
101101
"unsure about any aspect of the Pro version, please feel free to \n <a");
102102

103-
WriteLiteral(" href=\"#\"");
104-
105-
WriteLiteral(" onclick=\"window.location=\'mailto://[email protected]?Subject=CodeHub%20Pro%20" +
106-
"Question\'; return false;\"");
103+
WriteLiteral(" href=\"mailto:[email protected]?Subject=CodeHub%20Pro%20Question\"");
107104

108105
WriteLiteral(" target=\"_blank\"");
109106

CodeHub/WebViews/UpgradeDetailsWebView.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ ul.task-list > li.task-list-item {
157157
<p>
158158
Before you buy please take a look at the detailed description for each feature below.
159159
If you're unsure about any aspect of the Pro version, please feel free to
160-
<a href="#" onclick="window.location='mailto://[email protected]?Subject=CodeHub%20Pro%20Question'; return false;" target="_blank">contact me</a>!
160+
<a href="mailto:[email protected]?Subject=CodeHub%20Pro%20Question" target="_blank">contact me</a>!
161161
</p>
162162

163163
@if (Model.IsPurchased)

0 commit comments

Comments
 (0)