Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| <?php | |
| /** | |
| * imageColor | |
| * | |
| * Shows three methods to find the 'average' image color. | |
| * | |
| * Each function expects a gd image object. | |
| * | |
| * imageColor::averageResize($image) resizing to 1px, and checking the color. | |
| * imageColor::averageBorder($image) find the average color of all border pixels. |
| /* | |
| * 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, |
| /* iOS scrollpane jQuery plugin, v1.0 | |
| * ================================== | |
| * | |
| * (c) 2011 Dave Gurnell | |
| * http://boxandarrow.com | |
| * | |
| * Distributed under the Creative Commons Attribution 3.0 Unported licence: | |
| * http://creativecommons.org/licenses/by/3.0/ | |
| */ |
| var tapArea, moved, startX, startY; | |
| tapArea = document.querySelector('#list'); //the element to delegate | |
| moved = false; //flags if the finger has moved | |
| startX = 0; //starting x coordinate | |
| startY = 0; //starting y coordinate | |
| //touchstart | |
| tapArea.ontouchstart = function(e) { | |
| <!DOCTYPE html> | |
| <html> | |
| <!-- | |
| Created using JS Bin | |
| Source can be edited via /uzuzaj/latest/edit | |
| --> | |
| <!DOCTYPE html> | |
| <html> |
| $.cachedGetScript = $.cacheFactory(function(dfd, url) { | |
| $.getScript(url).then(dfd.resolve, dfd.reject); | |
| }); |
| <!DOCTYPE html> | |
| <meta charset=utf-8> | |
| <meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1"> | |
| <meta name=apple-mobile-web-app-capable content=yes> | |
| <meta name=apple-mobile-web-app-status-bar-style content=black> | |
| <title>Test fullscreen</title> | |
| <style> | |
| html, body { | |
| margin: 0; | |
| padding: 0; |
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |
| (function(window){var i,$sound,$buttonGroup;var $sounds=$(".sound");var clientId=require("config").get("client_id");var oauthToken=require("lib/connect").getAuthToken();var conversionHelper=require("lib/helpers/conversion-helper");var $downloadButton,size;var params,downloadUrl,onSuccess;for(i=$sounds.length-1;i>=0;i--){$sound=$($sounds[i]);var soundcloudUrl="https://soundcloud.com"+($sound.find(".soundTitle__title").attr("href")||window.location.pathname);params={url:soundcloudUrl,client_id:clientId};onSuccess=function($sound){return function(data){var params={client_id:clientId};downloadUrl=require("lib/url").stringify({query:params},data.stream_url+".mp3");$buttonGroup=$($sound.find(".sound__soundActions .sc-button-group")[0]);size=$buttonGroup.find(".sc-button:first")[0].className.match(/sc-button-((?:small)|(?:medium))/)[1];$downloadButton=$('<a class="sc-button sc-button-download sc-button-icon sc-button-responsive">Download</a>').attr({title:"Download this sound ("+conversionHelper.bytesToMB(data.origi |