Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Moore committed Dec 2, 2009
1 parent 9b399ca commit 5ce205e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build/yui/yui-base-debug.js
Expand Up @@ -182,7 +182,7 @@ YUI.prototype = {
fetchCSS: true,

// base: (Y === YUI) ? Y.Env.cdn : function() {
base: (YUI.config && YUI.config.base) ? YUI.config.base : function() {
base: (YUI.config && YUI.config.base) || function() {
var b, nodes, i, src, match;

// get from querystring
Expand Down
2 changes: 1 addition & 1 deletion build/yui/yui-base-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/yui/yui-base.js
Expand Up @@ -182,7 +182,7 @@ YUI.prototype = {
fetchCSS: true,

// base: (Y === YUI) ? Y.Env.cdn : function() {
base: (YUI.config && YUI.config.base) ? YUI.config.base : function() {
base: (YUI.config && YUI.config.base) || function() {
var b, nodes, i, src, match;

// get from querystring
Expand Down
2 changes: 1 addition & 1 deletion build/yui/yui-debug.js
Expand Up @@ -182,7 +182,7 @@ YUI.prototype = {
fetchCSS: true,

// base: (Y === YUI) ? Y.Env.cdn : function() {
base: (YUI.config && YUI.config.base) ? YUI.config.base : function() {
base: (YUI.config && YUI.config.base) || function() {
var b, nodes, i, src, match;

// get from querystring
Expand Down
2 changes: 1 addition & 1 deletion build/yui/yui-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/yui/yui.js
Expand Up @@ -182,7 +182,7 @@ YUI.prototype = {
fetchCSS: true,

// base: (Y === YUI) ? Y.Env.cdn : function() {
base: (YUI.config && YUI.config.base) ? YUI.config.base : function() {
base: (YUI.config && YUI.config.base) || function() {
var b, nodes, i, src, match;

// get from querystring
Expand Down
2 changes: 1 addition & 1 deletion src/yui/js/yui.js
Expand Up @@ -182,7 +182,7 @@ YUI.prototype = {
fetchCSS: true,

// base: (Y === YUI) ? Y.Env.cdn : function() {
base: (YUI.config && YUI.config.base) ? YUI.config.base : function() {
base: (YUI.config && YUI.config.base) || function() {
var b, nodes, i, src, match;

// get from querystring
Expand Down

0 comments on commit 5ce205e

Please sign in to comment.