Skip to content

Instantly share code, notes, and snippets.

View RedWolves's full-sized avatar

Ralph Whitbeck RedWolves

  • Atlassian
  • Rochester, NY
View GitHub Profile
@jcreamer898
jcreamer898 / README.md
Created October 1, 2012 17:20
anvil.js plugin boilerplate

anvil.js plugins

In this gist there's a plugin.js boilerplate for creating a new anvil plugin.

Also, there's a sublime snippet for the SB Text users out there.

@scottgonzalez
scottgonzalez / 1.8.js
Created May 9, 2011 16:42
quick overview of extending jQuery UI widgets in 1.8 and 1.9
(function( $, prototype ) {
$.extend( prototype.options, {
spinner: "<em>Loading&#8230;</em>"
});
var _create = prototype._create;
prototype._create = function() {
_create.call( this );
var self = this;
@jackfuchs
jackfuchs / jquery.support.cssproperty.js
Last active July 19, 2024 17:38
Extends the jQuery.support object to CSS Properties
/**
* jQuery.support.cssProperty
* To verify that a CSS property is supported
* (or any of its browser-specific implementations)
*
* @param p css property name
* @param rp optional, if set to true, the css property name will be returned
* instead of a boolean support indicator
* @return {mixed}
*
/*!
* jQuery TextChange Plugin
* http://www.zurb.com/playground/jquery-text-change-custom-event
*
* Copyright 2010, ZURB
* Released under the MIT License
*/
(function ($) {
$.event.special.textchange = {