This file contains hidden or 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
| <?php | |
| /* | |
| * Copyright 2008 Google Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * |
This file contains hidden or 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
| /* | |
| * DevToolsAPI.js | |
| * Author : Nic da Costa ( @nic_daCosta ) | |
| * Created : 2012/11/27 | |
| * Version : 0.1 | |
| * License : MIT, GPL licenses. | |
| * | |
| * Overview: | |
| * script to possibly be included in DevTools.js ( Chrome Dev Tools ) to give a | |
| * basic "interface" for developers to register scripts / functions for repeated use. |
This file contains hidden or 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
| <dsQueryResponse BaseViewID="1" RowLimit="30" TemplateType="107" ViewStyleID=""> | |
| <Rows> | |
| <Row AssignedTo="<table cellpadding="0" cellspacing="0" > | |
| <tr> | |
| <td style="padding-right: 3px;"> | |
| </td> | |
| </tr> | |
| </table>" AssignedTo.id="" AssignedTo.span="<table cellpadding="0" cellspacing="0" > | |
| <tr> | |
| <td style="padding-right: 3px;"> |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <xsl:output omit-xml-declaration="yes" indent="yes" /> | |
| <xsl:template match="/"> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Make</th> | |
| <th>Model</th> |
This file contains hidden or 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
| <cars> | |
| <car make="Ford" model="Pinto"> | |
| <passenger name="Dustin" /> | |
| <passenger name="Graham" /> | |
| </car> | |
| <car make="Toyota" model="Prius" /> | |
| <car make="Nissan" model="Sentra" /> | |
| </cars> |
This file contains hidden or 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
| @media only screen and (min-width: 320px) { | |
| /* Small screen, non-retina */ | |
| } | |
| @media | |
| only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px), | |
| only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px), | |
| only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px), |
This file contains hidden or 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
| <ul> | |
| <li class="month">October</li> | |
| <li class="day">30</li> | |
| <li class="year">2012</li> | |
| </ul> |
This file contains hidden or 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
| { | |
| "AL": "Alabama", | |
| "AK": "Alaska", | |
| "AS": "American Samoa", | |
| "AZ": "Arizona", | |
| "AR": "Arkansas", | |
| "CA": "California", | |
| "CO": "Colorado", | |
| "CT": "Connecticut", | |
| "DE": "Delaware", |
This file contains hidden or 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
| dom.each(function() { | |
| $(this).unbind('tap', callback); | |
| $(this).bind('tap', callback); | |
| $(this).bind('touchstart', function(e) { | |
| e.preventDefault(); | |
| var item = e.currentTarget; | |
| if (ISTOUCHING) return; | |
| item.moved = false; |
This file contains hidden or 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
| <!doctype html> | |
| <html> | |
| <head> | |
| <!-- Encoding --> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame --> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"></meta> | |