I hereby claim:
- I am hotmeteor on github.
- I am hotmeteor (https://keybase.io/hotmeteor) on keybase.
- I have a public key whose fingerprint is 1BE8 85E5 5876 AAB3 F655 0EFD 8404 1CBA 05AE E58B
To claim this, I am signing this object:
| /* | |
| * jQuery Mobile Framework : events | |
| * Copyright (c) jQuery Project | |
| * Dual licensed under the MIT or GPL Version 2 licenses. | |
| * http://jquery.org/license | |
| */ | |
| (function($, undefined ) { | |
| $.extend( $.support, { | |
| orientation: "orientation" in window, |
| if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) | |
| { | |
| $(window).load(function() | |
| { | |
| $('input:-webkit-autofill').each(function() | |
| { | |
| var text = $(this).val(); | |
| var name = $(this).attr('name'); | |
| $(this).after(this.outerHTML).remove(); | |
| $('input[name=' + name + ']').val(text); |
| var point, pointStartX, pointStartY, deltaX, deltaY; | |
| var scroller = new iScroll('scrollerId', { | |
| vScroll: false, | |
| vScrollbar: false, | |
| hScrollbar: false, | |
| snap: 'li', | |
| momentum: false, | |
| onBeforeScrollStart: function(e) { | |
| point = e.touches[0]; | |
| pointStartX = point.pageX; |
| /* | |
| inspiration: https://twitter.com/jfsiii/status/261575761163599872 | |
| meta: https://github.com/h5bp/mobile-boilerplate/blob/master/index.html | |
| metadata.json | |
| */ | |
| { | |
| "version": "0.0.1", | |
| "charset": "utf-8", |
| $buttons-list: '.btn', | |
| 'button', | |
| 'input[type=submit]', | |
| 'input[type=button]'; | |
| $unquoted-buttons-list: (); | |
| @each $button-type in $buttons-list { | |
| $unquoted-buttons-list: append($unquoted-buttons-list, unquote($button-type), comma); | |
| } |
| <html> | |
| <head> | |
| <title>Animated Sparkline using SVG Path and d3.js</title> | |
| <script src="https://raw.github.com/d3/d3.github.com/master/d3.v3.min.js"></script> | |
| <style> | |
| /* tell the SVG path to be a thin blue line without any area fill */ | |
| path { | |
| stroke: steelblue; | |
| stroke-width: 1; | |
| fill: none; |
I hereby claim:
To claim this, I am signing this object:
| <!doctype html> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>firstswim</title> | |
| <meta name="description" content=""> |
| //TODO: make this a module | |
| /** | |
| * # SockJS socket management service | |
| * | |
| * Creates SockJS socket connection to server, re-connects on disconnection, | |
| * and exports hooks to map handlers for various data interactions. | |
| * | |
| */ | |
| angular.module('app').factory |
| @media only screen and (max-width: 599px) { | |
| [data-replace] { | |
| display: inline-block; | |
| overflow: hidden; | |
| letter-spacing: -999em; | |
| vertical-align: bottom; | |
| &::before { | |
| content: attr(data-replace); | |
| letter-spacing: 0; |