This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Need to use cookiehandler to get cookie since it's chunked. See System.IdentityModel.Services.ChunkedCookieHandler | |
var cookie = FederatedAuthentication.SessionAuthenticationModule.CookieHandler.Read(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pageLoad() { | |
var element = document.getElementById("ctl32_ctl09"); | |
if (element) | |
{ | |
element.style.overflow = "visible"; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param($rootPath, $toolsPath, $package, $project) | |
if ($project) { | |
$projectDestinationPath = Split-Path $project.FullName -Parent | |
### Change single element value or attribute ### | |
$umbracoConfigFile = Join-Path $projectDestinationPath "Config\umbracoSettings.config" | |
$umbracoConfig = [XML](Get-Content $umbracoConfigFile) | |
# Set domain prefixes to true |
NewerOlder