Used to port over plugins to their new repos
🧙♀️
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
// Option 1 - Good solution, can create a controller from this | |
$('.ajaxy-page').ajaxify({ | |
controller: 'page', | |
request: function(){ | |
$('#content').fadeOut(); | |
}, | |
response: function(){ | |
$('#content').html(this.Response.data.content).fadeIn(); | |
} | |
}); |
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
/* | |
Demo of proposed registerPlugin function | |
*/ | |
(function(window,undefined){ | |
// Extract | |
var GENETICS = window.GENTICS, | |
jQuery = window.jQuery; | |
// Prototypes |
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
/** | |
* Bind and Trigger custom and native events in Prototype | |
* @author Juriy Zaytsev (kangax) | |
* @author Benjamin Lupton (balupton) | |
* @copyright MIT license | |
**/ | |
(function(){ | |
var eventMatchers = { | |
'HTMLEvents': /^(?:load|unload|abort|error|select|hashchange|popstate|change|submit|reset|focus|blur|resize|scroll)$/, |
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
/** | |
* Ajaxify a Campaign Monitor Subscribe Form | |
* without the need for a server-side proxy | |
* @author Benjamin Arthur Lupton | |
* @license Public Domain | |
*/ | |
$.fn.cmAjaxify = $.fn.cmAjaxify||function(options){ | |
// Prepare Options | |
options = options||{}; | |
options.html5ize = options.html5ize||false; |
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
/** | |
* Set or Fetch a HTML5 Placeholder | |
* without backwards compatibility for older browsers | |
* @author Benjamin Arthur Lupton | |
* @license Public Domain | |
*/ | |
$.fn.placeholder = $.fn.placeholder||function(placeholder) { | |
// Prepare | |
var $input = $(this); |
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
/** | |
* Flash a Element Three Times | |
* Great for validation and drawing attention | |
* @author Benjamin Arthur Lupton | |
* @license Public Domain | |
*/ | |
$.fn.flash = $.fn.flash||function(){ | |
var $el = $(this); |
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
/** | |
* Fetch the outerHTML of an Element | |
* @author Benjamin Arthur Lupton | |
* @license Public Domain | |
*/ | |
$.fn.outerHtml = $.fn.outerHtml||function(){ | |
var | |
$el = $(this), | |
el = $el.get(0), | |
html = el.outerHTML || new XMLSerializer().serializeToString(el); |
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
#!/usr/bin/env ruby | |
# == Name | |
# cli - Aloha Editor's Command Line Interface | |
# | |
# == Synopsis | |
# TODO: finish this section | |
# | |
# == Examples | |
# TODO: finish this section |