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
| /* | |
| App plugins can be loaded over an instance of App by setting a route with a wildcard path | |
| such as: | |
| { | |
| path:'/:app/*', | |
| callback: 'dispatchApp' | |
| } | |
| where the app param is the module name of the plugin, | |
| which should have its entry in the YUI config file (unless loaded by some other means) | |
| */ |
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('widget-buttons-patch', function (Y) { | |
| "use strict"; | |
| var WB = Y.WidgetButtons, | |
| WBp = WB.prototype, | |
| BUTTON = 'button', | |
| getCN = Y.ClassNameManager.getClassName, | |
| DISABLED = getCN(BUTTON, 'disabled'), | |
| DEFAULT = getCN(BUTTON, 'default'); | |
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 PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <title>JSON Schema and DataTypes</title> | |
| <style> | |
| td , th , table { | |
| border: thin solid silver; | |
| } | |
| td , th { |
NewerOlder