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
<div class="yui3-popover top wide-popover"> | |
<div class="yui3-g"> | |
<div class="yui3-u-1-5 bolded">Finance:</div> | |
<div class="yui3-u-3-5"><strong>AAPL</strong> dropped <strong>5%</strong> to $612.26 in After Hours trading.</div> | |
<div class="yui3-u-1-5 rightAligned"><a href="#" class="small yui3-button">Full Chart</a></div> | |
</div> | |
<div class="yui3-g"> | |
<div class="yui3-u-1-5 bolded">Messenger:</div> | |
<div class="yui3-u-3-5">3 unread messages from Chad Michaels.</div> | |
<div class="yui3-u-1-5 rightAligned"><a href="#" class="small yui3-button">Read</a></div> |
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
<div class="yui3-popover bottom wide-popover"> | |
<div class="yui3-g"> | |
<div class="yui3-u-1-5 bolded">Yahoo! Mail</div> | |
<div class="yui3-u-3-5">You have 3 new messages.</div> | |
<div class="yui3-u-1-5 rightAligned"><a href="#" class="small yui3-button">Read</a></div> | |
</div> | |
<div class="yui3-arrow-border"></div> | |
<div class="yui3-arrow"></div> | |
</div> |
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
<div class="yui3-popover right"> | |
<div> | |
<p>You have no new notifications.</p> | |
<p>Receive notifications when you comment or discuss content with friends on Yahoo!</p> | |
<p><a href="#" class="yui3-button block">Learn More</a></p> | |
</div> | |
<div class="yui3-arrow-border"></div> | |
<div class="yui3-arrow"></div> | |
</div> |
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
notifier.handle.evt.fire = function (e) { | |
var subs = this._subscribers.concat(this._afters), | |
args = Y.Array(arguments, 0, true), | |
i, len, halt; | |
for (i = 0, len = subs.length; i < len; ++i) { | |
halt = subs[i].notify(args, this); | |
// stopImmediatePropagation | |
if (halt === false || e.stopped > 1) { |
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>CSSForm and CSSTable</title> | |
<!--These CSS modules can be loaded from the YUI Gallery--> | |
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/gallery-2013.01.09-23-24/build/gallerycss-cssform/gallerycss-cssform.css"> | |
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/gallery-2013.01.09-23-24/build/gallerycss-csstable/gallerycss-csstable.css"> | |
</head> | |
<body class='yui3-skin-sam'> | |
</body> |
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
<input type="text" class="yui3-input-medium yui3-input-rounded"> |
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
<input class="yui3-input-xlarge" id="disabledInput" type="text" placeholder="Disabled input here..." disabled> |