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
function WebForm_PostBackOptions(eventTarget, eventArgument, validation, validationGroup, actionUrl, trackFocus, clientSubmit) { | |
this.eventTarget = eventTarget; | |
this.eventArgument = eventArgument; | |
this.validation = validation; | |
this.validationGroup = validationGroup; | |
this.actionUrl = actionUrl; | |
this.trackFocus = trackFocus; | |
this.clientSubmit = clientSubmit; | |
} | |
function WebForm_DoPostBackWithOptions(options) { |
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
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// ----------------------------------------------------------------------------- | |
// Introduction | |
// ----------------------------------------------------------------------------- | |
// Here is hacky and experimental solution for cross-scopes extends |
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
{ | |
"data": [ | |
[ | |
"Airi Satou", | |
"Accountant", | |
"Tokyo", | |
"33", | |
"20081128", | |
"162700" | |
], |
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
{ | |
"data": [ | |
{ | |
"Date": "03/01/2018", | |
"Title": "OEM Statement", | |
"Category": "Statement", | |
"Delivered Via": "SMS", | |
"Account": "Mortgage #1234" | |
}, | |
{ |
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
// HML - hipster markup language, because typing div is lamo and recycling depricated html is good for the environment. | |
b { // div | |
display: block; | |
font-weight: normal; | |
} | |
s { // span | |
text-decoration: none | |
} | |
i { // icon | |
use-for: icons; |
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
<s class='red-50'></s> | |
<s class='red-100'></s> | |
<s class='red-200'></s> | |
<s class='red-300'></s> | |
<s class='red-400'></s> | |
<s class='red-500'></s> | |
<s class='red-600'></s> | |
<s class='red-700'></s> | |
<s class='red-800'></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
@import "reset"; | |
@import "mixins"; | |
///* === The basic styles =================================================>> */ | |
@include Headings(); | |
@include Selected(); | |
body { | |
color: $ForegroundColor; | |
background: $BackgroundColor; | |
} | |
body, button, textarea, input, table, select, optgroup { |