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
{ | |
"name": "bootstrap", | |
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", | |
"version": "4.0.0-alpha.2", | |
"keywords": [ | |
"css", | |
"sass", | |
"mobile-first", | |
"responsive", | |
"front-end", |
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
#!/bin/bash | |
YELLOW='\033[0;33m' | |
YELLOW_BOLD='\033[1;33m' | |
BLUE='\033[0;34m' | |
BLUE_BOLD='\033[1;34m' | |
NC='\033[0m' # No Color | |
USER="thatuser" | |
IP="999.999.999.999" |
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 {Cookie} from 'cookie'; | |
export class HttpUtility { | |
constructor() { | |
} | |
standardConfiguration(config) { | |
config |
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
#target photoshop | |
// | |
// StrengthenIconExport.jsx | |
// | |
// | |
// Generated Sat Jan 02 2016 14:20:45 GMT-0600 | |
// | |
cTID = function(s) { return app.charIDToTypeID(s); }; |
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
"overrides": { | |
"npm:[email protected]": { | |
"main": "client/shim.min" | |
}, | |
"github:hakanersu/[email protected]": { | |
"main": "dist/js/jquery.amaran.min.js" | |
}, | |
"github:TylerJPresley/bootstrap@v4-dev": { | |
"dependencies": { | |
"HubSpot/tether": "1.1.1", |
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
{"countries":[{"name":"Afghanistan","abbr":"AF","divisions":["Badakhshan","Badghis","Baghlan","Balkh","Bamyan","Daykundi","Farah","Faryab","Ghazni","Ghor","Helmand","Herat","Jowzjan","Kabul","Kandahar","Kapisa","Khost","Kunar","Kunduz","Laghman","Logar","Maidan Wardak","Nangarhar","Nimruz","Nuristan","Paktia","Paktika","Panjshir","Parwan","Samangan","Sar-e Pol","Takhar","Urozgan","Zabul"]},{"name":"Åland Islands","abbr":"AX","divisions":["Brändö","Eckerö","Finström","Föglö","Geta","Hammarland","Jomala","Kumlinge","Kökar","Lemland","Lumparland","Mariehamn","Saltvik","Sottunga","Sund","Vårdö"]},{"name":"Albania","abbr":"AL","divisions":["Berat","Dibër","Durrës","Elbasan","Fier","Gjirokastër","Korçë","Kukës","Lezhë","Shkodër","Tirana","Vlorë"]},{"name":"Algeria","abbr":"DZ","divisions":["Adrar","Aïn Defla","Aïn Témouchent","Algiers","Annaba","Batna","Béchar","Béjaïa","Biskra","Blida","Bordj Bou Arréridj","Bouïra","Boumerdès","Chlef","Constantine","Djelfa","El Bayadh","El Oued","El Tarf","Ghardaïa","Guelma","Illi |
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
<template> | |
<adaptive-input input-class="form-control date" type="text" label="Date" value.bind="value"></adaptive-input> | |
</template> |
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
<template> | |
<section class="au-animate"> | |
<h2>Cascading Selects Example</h2> | |
<form role="form" submit.delegate="submit()"> | |
<div class="form-group"> | |
<label for="levelOne">Level 1</label> | |
<select id="levelOne" name="levelOne" value.bind="levelOne"> |
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
<template> | |
<require from="bootstrap/css/bootstrap.css"></require> | |
<require from='./items-list'></require> | |
<items-list close.call="close($event)"></items-list> | |
</template> |
OlderNewer