This file contains 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
<html> | |
<head> | |
<title>AUI HTML5 shiv Test</title> | |
<script src="http://cdn.alloyui.com/2.0.0pr6/aui/aui-min.js"></script> | |
<script src="http://cdn.alloyui.com/2.0.0pr6/aui-base-html5-shiv/aui-base-html5-shiv.js"></script> | |
<script type="text/javascript"> | |
YUI.Env.core.push('aui-base-html5-shiv'); |
This file contains 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
<html> | |
<head> | |
<title>AUI HTML5 shiv Test</title> | |
<script src="http://cdn.alloyui.com/2.0.0pr6/aui/aui-min.js"></script> | |
<script type="text/javascript"> | |
new YUI().use('aui-base'); | |
</script> | |
This file contains 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('dom-move-xy-test', function(Y) { | |
Y.DOM._testXY = function() { | |
var Assert = Y.Assert, | |
ArrayAssert = Y.ArrayAssert, | |
tests = {name: 'Y.DOM.xy'}, | |
sel = '.node', | |
nodes = Y.Selector.query(sel); | |
function testXY(expected, actual) { |
This file contains 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
import Component from 'metal-component'; | |
import Soy from 'metal-soy'; | |
import templates from './Editor.soy'; | |
class Editor extends Component { | |
attached() { | |
AlloyEditor.editable(this.divId, {imageScaleResize: 'scale'}); | |
} | |
}; |
This file contains 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
import core from 'metal/src/core'; | |
import MetalDropdown from 'metal-dropdown'; | |
import Soy from 'metal-soy'; | |
import templates from './LexiconDropdown.soy'; | |
/** | |
* Implementation of the Lexicon Dropdown. | |
* @see {@link http://liferay.github.io/lexicon/content/dropdowns/|Lexicon Definition} | |
*/ |