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
YUI.add('hold-unit-tests', function(Y) { | |
var HOLD_EVENT = Y.Node.DOM_EVENTS.hold.eventDef, | |
Assert = Y.Assert, | |
noop = function() {}, | |
module = Y.one('#event-hold-module'), | |
submodule1 = Y.one('#event-hold-submodule1'), | |
submodule2 = Y.one('#event-hold-submodule2'), | |
HANDLES = { |
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> | |
<title>Repro case for #1147</title> | |
<style> | |
#demo { | |
width: 200px; | |
} | |
#demo ul li { |
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> | |
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/pure/0.2.1/pure-min.css"> | |
<style> | |
.pure-g, | |
.pure-g-r { | |
font-family: "Bitstream Charter", Tinos, "Droid Sans", "Dejavu Sans", Helvetica, Arial, sans-serif; | |
} | |
.pure-g [class *= "pure-u"], |
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
exports.sectionHeading = function (title) { | |
return Handlebars.helpers.anchor.call(this, "h2", "content-subhead"); | |
}; | |
exports.anchor = function (title, elemType, classes) { | |
var elem, | |
anchor = title.toLowerCase() | |
.replace(/&[^\s;]+;?/g, '') // remove HTML entities | |
.replace(/[^\s\w\-]+/g, '') // remove all chars except whitespace, word chars, and - |
This file has been truncated, but you can view the full file.
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
[ | |
{ | |
"name": "App", | |
"passed": 370, | |
"failed": 0, | |
"errors": 0, | |
"ignored": 0, | |
"total": 370, | |
"duration": 8780, | |
"type": "report", |
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
function detachHandles(subscription, handles) { | |
- handles || (handles = Y.Object.values(HANDLES)); | |
+ handles = handles || Y.Object.values(HANDLES); | |
Y.Array.each(handles, function (item) { | |
var handle = subscription[item]; | |
@@ -177,7 +177,9 @@ Y.Event.define(EVT_TAP, { | |
canceled: false, | |
eventType: event.type | |
}, |
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
Searching 1087 files for "YUI" | |
/Applications/MAMP/htdocs/yuilib-css/app.js: | |
33 min: config.isProduction ? '-min' : '', | |
34 | |
35: yui : config.yui, | |
36 typekit: config.typekit | |
37 }); | |
/Applications/MAMP/htdocs/yuilib-css/npm-debug.log: |
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> | |
<meta charset='utf-8'/> | |
<meta name="viewport" content = "width = device-width, initial-scale = 2.3, user-scalable = no" /> | |
<title></title> | |
<script src="http://yui.yahooapis.com/3.9.0/build/yui/yui-min.js"></script> | |
<style> | |
#box { |
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> | |
<title>gallery-widget-pointer</title> | |
<script src="http://yui.yahooapis.com/3.9.0/build/yui/yui-min.js"></script> | |
<script src="js/tests.js"></script> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" type="text/css" href="../../assets/gallery-widget-pointer-core.css"> | |
</head> |
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
/* | |
* CSS TABLES | |
* ========== | |
* Simple CSS for HTML Tables | |
* Author: tilomitra | |
*/ | |
/* foundational CSS */ | |
.yui3-table, .yui3-skin-sam .yui3-datatable-table { | |
/* Remove spacing between table cells (from Normalize.css) */ |