This file contains 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
import {ValidationViewStrategy} from 'aurelia-validation/validation-view-strategy'; | |
export class CustomValidationViewStrategyBase extends ValidationViewStrategy { | |
constructor(containerClass, containerSuccessClass, containerErrorClass, appendClass, appendActiveClass) { | |
super(); | |
this.containerClass = containerClass; // The class for the container. | |
this.containerErrorClass = containerErrorClass; // What's the error class for the container | |
this.containerSuccessClass = containerSuccessClass; // What's the error class for the container | |
this.appendClass = appendClass; // Where we're appending the message |
This file contains 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
//http://stackoverflow.com/questions/13210663/how-to-order-knockout-bindings | |
ko.bindingHandlers.chosen = { | |
init: function(element, valueAccessor, allBindingsAccessor, viewModel) { | |
var allBindings = allBindingsAccessor(); | |
var options = {default: 'Select one...'}; | |
$.extend(options, allBindings.chosen) | |
$(element).attr('data-placeholder', options.default); |
This file contains 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
#Basic Setup | |
Install-WindowsUpdate -AcceptEula | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
# Windows Features | |
choco install Microsoft-Hyper-V-All -source windowsFeatures | |
choco install IIS-WebServerRole -source windowsfeatures | |
choco install IIS-HttpCompressionDynamic -source windowsfeatures |
This file contains 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
# http://boxstarter.org/package/url? | |
##################### | |
# BEGIN CONFIGURATION | |
##################### | |
#region Initial Windows Config | |
Install-WindowsUpdate -AcceptEula | |
Update-ExecutionPolicy Unrestricted |
This file contains 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
# see http://stackoverflow.com/questions/28017374/what-is-the-suggested-way-to-install-brew-node-js-io-js-nvm-npm-on-os-x | |
brew update | |
brew install nvm | |
source $(brew --prefix nvm)/nvm.sh | |
echo "source $(brew --prefix nvm)/nvm.sh" >> ~/.zshrc | |
nvm install v0.12.7 #latest for now | |
npm install -g npm@latest |
This file contains 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
# These are project build parameters in TeamCity | |
# Depending on the branch, we will use different major/minor versions | |
[System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions") | |
$ser = New-Object System.Web.Script.Serialization.JavaScriptSerializer | |
$json = Get-Content "package.json" | Out-String | |
$obj = $ser.DeserializeObject($json) | |
$majorVerion = ($obj['version'] -split "\.")[0] | |
$minorVerion = ($obj['version'] -split "\.")[1] | |
$buildCounter = "%teamcity.build.counter%" | |
$buildNumber = "$majorVerion.$minorVerion.$buildCounter" |
NewerOlder