Provided as distinct CJS modules, installable via npm
Individual modules of es5-ext package. See ES6 features for usage information.
Individual modules of es5-ext package. See ES6 features for usage information.
| /** | |
| * User Timing polyfill (http://www.w3.org/TR/user-timing/) | |
| * @author RubaXa <trash@rubaxa.org> | |
| */ | |
| (function (window){ | |
| var | |
| startOffset = Date.now ? Date.now() : +(new Date) | |
| , performance = window.performance || {} | |
| , _entries = [] |
| // We're going to use Breakpoint to handle our media queries | |
| // http://github.com/team-sass/breakpoint | |
| @import "breakpoint"; | |
| @mixin element-query($sizes...) { | |
| @each $size in $sizes { | |
| @include breakpoint(nth($size, 2)) { | |
| #{nth($size, 1)} & { | |
| @content; | |
| } |
| var App = angular.module('App', []); | |
| App.controller('TodoCtrl', function($scope, $http) { | |
| $http.get('todos.json') | |
| .then(function(res){ | |
| $scope.todos = res.data; | |
| }); | |
| }); |
| var default_msg = $.mobile.loadingMessage; // set this outside function scope so we can access it later | |
| // you must provide a msg argument. The delay and theme arguments are optional. | |
| function show_hide_message = function(msg,delay,theme) { | |
| if (typeof(delay)==='undefined') { | |
| var delay = 3500; // in milliseconds | |
| } | |
| if (typeof(theme)==='undefined') { | |
| var theme = 'a'; // default theme; setting this to 'e' is nice for error messages | |
| } |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| 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 |
| /* | |
| * anchor-include pattern for already-functional links that work as a client-side include | |
| * Copyright 2011, Scott Jehl, scottjehl.com | |
| * Dual licensed under the MIT | |
| * Idea from Scott Gonzalez | |
| * to use, place attributes on an already-functional anchor pointing to content | |
| * that should either replace, or insert before or after that anchor | |
| * after the page has loaded | |
| * Replace: <a href="..." data-replace="articles/latest/fragment">Latest Articles</a> | |
| * Before: <a href="..." data-before="articles/latest/fragment">Latest Articles</a> |
| 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 |