Skip to content

Instantly share code, notes, and snippets.

View mpond76's full-sized avatar

Mark Pond mpond76

View GitHub Profile
@mpond76
mpond76 / .bash_profile
Last active August 29, 2015 14:27 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@mpond76
mpond76 / toChecklist
Last active December 21, 2015 00:49
toChecklist jQuery plugin which is compatible with Salesforce.com VisualForce pages.
Source:
http://www.scotthorlbeck.com/code/tochecklist/
Description:
toChecklist jQuery plugin which has been modified to be compatible with
salesforce.com visualforce pages. This has been done by replacing the
shortcut selector usage for IDs from $('#' + n) to $('[id=" + n + "]')
since the visualforce generated ID values include the colon character
which is incompatible with jQuery as it's interpreted as a pseudoselector.
@mpond76
mpond76 / jquery.toChecklist.js
Created August 13, 2013 17:29
toChecklist jQuery plugin which is compatible with Salesforce.com VisualForce pages. (shortcut ID selector syntax changed to [id=""])
/**
* toChecklist plugin (requires jQuery 1.9.x)
* @author Scott Horlbeck <me@scotthorlbeck.com>
* @url http://www.scotthorlbeck.com/code/tochecklist/
* @version 1.5.1 - (Mark Pond)
* @date 2013-07-30
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or