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
| var Y = require('yui/json'), | |
| microtime = require('microtime'), | |
| i, | |
| t, | |
| obj = { | |
| foo: { | |
| bar: { | |
| baz: 'token' | |
| } | |
| } |
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
| [ | |
| { | |
| "settings": [ "master" ], | |
| "appPort": 80, | |
| "staticHandling": { | |
| "cache": true | |
| }, | |
| "yui": { | |
| "config": { | |
| "combine": true, |
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> | |
| <script src="http://yui.yahooapis.com/combo?3.7.3/yui-base/yui-base.js&3.7.3/loader-base/loader-base.js"></script> | |
| <script> | |
| YUI.add('loader-app', function (Y) { | |
| YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || { | |
| "json-stringify":{"requires":["yui-base"]}, | |
| "foo":{ |
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
| { | |
| "hello": { | |
| "results": [{ | |
| "passed": 1, | |
| "failed": 0, | |
| "total": 1, | |
| "ignored": 0, | |
| "duration": 12, | |
| "type": "report", | |
| "name": "UseCases: hello", |
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("loader",function(Y){YUI.Env[Y.version].modules=YUI.Env[Y.version].modules||{"mojito":{"requires":[]},"json-stringify":{"requires":["yui-base"]},"array-extras":{"requires":["yui-base"]},"mojito-util":{"requires":["array-extras","json-stringify","mojito"]},"mojito-view-renderer":{"requires":["mojito"]},"oop":{"requires":["yui-base"]},"event-custom-base":{"requires":["oop"]},"mojito-action-context":{"requires":["mojito","json-stringify","event-custom-base","mojito-view-renderer","mojito-util"]},"mojito-resource-store-adapter":{"requires":["mojito-util","json-stringify"]},"mojito-dispatcher":{"requires":["mojito-action-context","mojito-util","mojito-resource-store-adapter"]},"querystring-parse":{"requires":["yui-base","array-extras"]},"querystring-stringify":{"requires":["yui-base"]},"mojito-mojit-proxy":{"requires":["mojito","mojito-util","querystring-parse","querystring-stringify"]},"dom-core":{"requires":["oop","features"]},"dom-base":{"requires":["dom-core"]},"selector-native":{"requires":["dom-base" |
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('mojito', function(Y, NAME) { | |
| Y.namespace('mojito'); | |
| }, '0.1.0', {requires: []}); |
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> | |
| <script src="http://yui.yahooapis.com/combo?3.7.2/yui-base/yui-base.js&3.7.2/loader-base/loader-base.js"></script> | |
| <script> | |
| YUI.add('loader-app', function (Y) { | |
| YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || { | |
| "json-stringify":{"requires":["yui-base"]}, | |
| "oop":{"requires":["yui-base"]} |
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
| 'autocomplete-plugin': | |
| { requires: [ 'autocomplete-list', 'node-pluginhost' ], | |
| name: 'autocomplete-plugin', | |
| type: 'js', | |
| path: 'autocomplete-plugin/autocomplete-plugin-min.js', | |
| supersedes: undefined, | |
| ext: false, | |
| _parsed: false, | |
| langCache: undefined, | |
| expanded_map: |
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 3859 files for ""condition": {" (case sensitive) | |
| /Users/caridy/repo/yui3/src/app/meta/app.json: | |
| 27 | |
| 28 "app-transitions-native": { | |
| 29: "condition": { | |
| 30 "trigger": "app-transitions", | |
| 31 "test" : "app-transitions-test.js" | |
| /Users/caridy/repo/yui3/src/autocomplete/meta/autocomplete.json: |
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
| // This is pure craziness, injecting an iframe in a page that has | |
| // a fixed canonical domain will cause the dynamic iframe to fail | |
| // to access the parent window. | |
| // As a workaround, we can fix the domain in the dynamic iframe for IE. | |
| (function() { | |
| var inject = function(d, w) { | |
| var ie = w.navigator.userAgent.match(/MSIE\s/), | |
| i = d.createElement("iframe"), | |
| n = (ie && (d.domain != d.location.host) ? ("<scri" + "pt>try{document.domain='#d';}catch(e){}</scr" + "ipt>").replace("#d", d.domain) : ""), | |
| f = ("<!doctype html><html><head>" + n + "<sc" + "ript src='#c'></scri" + "pt></head><body></body></html>").replace("#c", "http://your-company.com/your-app-controller.js"), |