Skip to content

Instantly share code, notes, and snippets.

View ShaggyDude's full-sized avatar
🤖
UX, UI

scott romack ShaggyDude

🤖
UX, UI
View GitHub Profile
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) {
@ShaggyDude
ShaggyDude / SassMeister-input.scss
Created February 26, 2020 20:14 — forked from KittyGiraudel/SassMeister-input.scss
Generated by SassMeister.com.
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
// -----------------------------------------------------------------------------
// Introduction
// -----------------------------------------------------------------------------
// Here is hacky and experimental solution for cross-scopes extends
@ShaggyDude
ShaggyDude / datatable2.json
Created November 5, 2018 22:06
Six column example
{
"data": [
[
"Airi Satou",
"Accountant",
"Tokyo",
"33",
"20081128",
"162700"
],
@ShaggyDude
ShaggyDude / json.json
Last active November 5, 2018 21:32
Datatable Json
{
"data": [
{
"Date": "03/01/2018",
"Title": "OEM Statement",
"Category": "Statement",
"Delivered Via": "SMS",
"Account": "Mortgage #1234"
},
{
// 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;
@ShaggyDude
ShaggyDude / SassMeister-input-HTML.html
Created January 26, 2015 20:33
Generated by SassMeister.com.
<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>
@ShaggyDude
ShaggyDude / simpl.css
Created March 24, 2011 19:00
a CSS framework (requires Sass)
@import "reset";
@import "mixins";
///* === The basic styles =================================================>> */
@include Headings();
@include Selected();
body {
color: $ForegroundColor;
background: $BackgroundColor;
}
body, button, textarea, input, table, select, optgroup {