Skip to content

Commit

Permalink
prevent text selection
Browse files Browse the repository at this point in the history
  • Loading branch information
vogtmh committed Oct 24, 2024
1 parent d96755f commit 7ac9198
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
Binary file modified .vs/DayView/DesignTimeBuild/.dtbcache
Binary file not shown.
Binary file modified .vs/DayView/v15/.suo
Binary file not shown.
10 changes: 5 additions & 5 deletions DayView/BundleArtifacts/neutral.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MainPackage=C:\Users\mavo\source\repos\DayView\DayView\bin\Release\DayView_1.0.0.0_AnyCPU.appx
ResourcePack=C:\Users\mavo\source\repos\DayView\DayView\bin\Release\DayView_1.0.0.0_scale-100.appx
ResourcePack=C:\Users\mavo\source\repos\DayView\DayView\bin\Release\DayView_1.0.0.0_scale-125.appx
ResourcePack=C:\Users\mavo\source\repos\DayView\DayView\bin\Release\DayView_1.0.0.0_scale-150.appx
ResourcePack=C:\Users\mavo\source\repos\DayView\DayView\bin\Release\DayView_1.0.0.0_scale-400.appx
MainPackage=C:\Users\mavo\Documents\dayview\DayView\bin\Release\DayView_1.0.1.0_AnyCPU.appx
ResourcePack=C:\Users\mavo\Documents\dayview\DayView\bin\Release\DayView_1.0.1.0_scale-100.appx
ResourcePack=C:\Users\mavo\Documents\dayview\DayView\bin\Release\DayView_1.0.1.0_scale-125.appx
ResourcePack=C:\Users\mavo\Documents\dayview\DayView\bin\Release\DayView_1.0.1.0_scale-150.appx
ResourcePack=C:\Users\mavo\Documents\dayview\DayView\bin\Release\DayView_1.0.1.0_scale-400.appx
2 changes: 1 addition & 1 deletion DayView/DayView.jsproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<AppxPackageIsForStore>False</AppxPackageIsForStore>
<AppxShowAllApps>False</AppxShowAllApps>
<AppxBuildConfigurationSelection>neutral</AppxBuildConfigurationSelection>
<PackageOptionalProjectsInIdeBuilds>False</PackageOptionalProjectsInIdeBuilds>
<PackageOptionalProjectsInIdeBuilds>True</PackageOptionalProjectsInIdeBuilds>
</PropertyGroup>
</Project>
4 changes: 4 additions & 0 deletions DayView/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,5 +364,9 @@ function clickHidecontrol() {
}
}

$(document).ready(function () {
document.onselectstart = new Function("return false")
});

updateContent()
setInterval(updateContent, 1800000)
2 changes: 1 addition & 1 deletion DayView/package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="9215d1da-956e-4da3-a437-f99544e86334" Version="1.0.0.0" Publisher="CN=mavo" />
<Identity Name="9215d1da-956e-4da3-a437-f99544e86334" Version="1.0.1.0" Publisher="CN=mavo" />
<mp:PhoneIdentity PhoneProductId="9215d1da-956e-4da3-a437-f99544e86334" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>DayView</DisplayName>
Expand Down

0 comments on commit 7ac9198

Please sign in to comment.