This list will hopefully shrink faster than it can grow. (yeah, right)
jQuery deparam / deparam+ / sortObject (WIP)
https://gist.github.com/1025817
jQuery infiniteScroller (WIP)
jQuery scrollinout event
| function clone( obj ) { | |
| var val, length, i, | |
| temp = []; | |
| if ( Array.isArray(obj) ) { | |
| for ( i = 0, length = obj.length; i < length; i++ ) { | |
| // Store reference to this array item's value | |
| val = obj[ i ]; | |
| // If array item is an object (including arrays), derive new value by cloning |
| <!doctype html> | |
| <head> | |
| <link rel="stylesheet" href="/css/style.css"> | |
| <body> | |
| <input class="friend-search"></input> | |
| <div id="fb-root"></div> | |
| <script>window.jQuery || document.write("<script src='/js/libs/jquery-1.5.1.min.js'>\x3C/script>")</script> | |
| <script src="/js/jquery.autosuggest.js"></script> |
This list will hopefully shrink faster than it can grow. (yeah, right)
jQuery deparam / deparam+ / sortObject (WIP)
https://gist.github.com/1025817
jQuery infiniteScroller (WIP)
jQuery scrollinout event
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| (function( jQuery ) { | |
| var getScript = jQuery.getScript; | |
| jQuery.getScript = function( resources, callback ) { | |
| var // reference declaration & localization | |
| length = resources.length, | |
| handler = function() { counter++; }, | |
| deferreds = [], |
| // Object literal code organization pattern. From Rebecca Murphy's blog: | |
| // http://blog.rebeccamurphey.com/2009/10/15/using-objects-to-organize-your-code | |
| var myModule = { | |
| 'config' : { | |
| 'option1' = val, | |
| 'cached_elem' = $(this) | |
| }, | |
| 'init' : function(config) { | |
| // provide for custom configuration via init() |
| /*$(document).live("orientationchange", function(event) { | |
| ResizePageContentHeight($(".ui-page")); | |
| });*/ | |
| // As per: http://code.google.com/p/jqtouch/issues/detail?id=370 | |
| $(window).bind('orientationchange', function(event) { | |
| ResizePageContentHeight($(".ui-page")); | |
| }).trigger('orientationchange'); |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| .axle_tooltip { | |
| width: 200px; | |
| height: auto; | |
| padding: 10px 40px 20px 20px; | |
| background: rgba(28, 29, 31, 0.6); | |
| background: -moz-linear-gradient(top, rgba(28, 29, 31, 0.6) 0%, #1c1d1f 100%); | |
| background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(28, 29, 31, 0.6)), color-stop(100%, #1c1d1f)); | |
| background: -webkit-linear-gradient(top, rgba(28, 29, 31, 0.6) 0%, #1c1d1f 100%); | |
| background-image: -o-linear-gradient(top, rgba(28, 29, 31, 0.6) 0%, #1c1d1f 100%); | |
| border: 2px solid white; |