Skip to content

Commit

Permalink
Fix some weired UTF8 char. Cleared config file
Browse files Browse the repository at this point in the history
  • Loading branch information
efyx committed Feb 18, 2010
1 parent 59f99ee commit bdde97b
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 11 deletions.
1 change: 0 additions & 1 deletion Build/closureCompiler/apeClientJS.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Build/closureCompiler/apeClientMoo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions Build/uncompressed/apeClientJS.js
Expand Up @@ -66,7 +66,7 @@ APE.Client.prototype.load = function(config){
config = config || {};

config.transport = config.transport || APE.Config.transport || 0;
config.frequency = config.frequency || 0;
config.frequency = config.frequency || 0;
config.domain = config.domain || APE.Config.domain || document.domain;
config.scripts = config.scripts || APE.Config.scripts;
config.server = config.server || APE.Config.server;
Expand Down Expand Up @@ -125,7 +125,7 @@ APE.Client.prototype.load = function(config){
} else {
iframe.setAttribute('src',(config.secure ? 'https': 'http') + '://' + config.frequency + '.' + config.server + '/?[{"cmd":"script","params":{"domain":"' + document.domain +'","scripts":["' + config.scripts.join('","') + '"]}}]');
if (navigator.product == 'Gecko') {
//Firefox fix, see bug  #356558
//Firefox fix, see bug #356558
// https://bugzilla.mozilla.org/show_bug.cgi?id=356558
iframe.contentWindow.location.href = iframe.getAttribute('src');
}
Expand Down Expand Up @@ -172,4 +172,3 @@ APE.Config.server = 'ape.local.ape-project.org:6969'; //APE server URL
for (var i = 0; i < arguments.length; i++)
APE.Config.scripts.push(APE.Config.baseUrl + '/Source/' + arguments[i] + '.js');
})('mootools-core', 'Core/APE', 'Core/Events', 'Core/Core', 'Pipe/Pipe', 'Pipe/PipeProxy', 'Pipe/PipeMulti', 'Pipe/PipeSingle', 'Request/Request','Request/Request.Stack', 'Request/Request.CycledStack', 'Transport/Transport.longPolling','Transport/Transport.SSE', 'Transport/Transport.XHRStreaming', 'Transport/Transport.JSONP', 'Transport/Transport.WebSocket', 'Core/Utility', 'Core/JSON');
APE.Config.scripts.push(APE.Config.baseUrl + '/Plugins/Debug/Client/Plugins/Debug.js');
1 change: 0 additions & 1 deletion Build/uncompressed/apeClientMoo.js
Expand Up @@ -124,4 +124,3 @@ APE.Config.server = 'ape.local.ape-project.org:6969'; //APE server URL
for (var i = 0; i < arguments.length; i++)
APE.Config.scripts.push(APE.Config.baseUrl + '/Source/' + arguments[i] + '.js');
})('mootools-core', 'Core/APE', 'Core/Events', 'Core/Core', 'Pipe/Pipe', 'Pipe/PipeProxy', 'Pipe/PipeMulti', 'Pipe/PipeSingle', 'Request/Request','Request/Request.Stack', 'Request/Request.CycledStack', 'Transport/Transport.longPolling','Transport/Transport.SSE', 'Transport/Transport.XHRStreaming', 'Transport/Transport.JSONP', 'Transport/Transport.WebSocket', 'Core/Utility', 'Core/JSON');
APE.Config.scripts.push(APE.Config.baseUrl + '/Plugins/Debug/Client/Plugins/Debug.js');
1 change: 0 additions & 1 deletion Build/yuiCompressor/apeClientJS.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Build/yuiCompressor/apeClientMoo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Clients/JavaScript.js
Expand Up @@ -66,7 +66,7 @@ APE.Client.prototype.load = function(config){
config = config || {};

config.transport = config.transport || APE.Config.transport || 0;
config.frequency = config.frequency || 0;
config.frequency = config.frequency || 0;
config.domain = config.domain || APE.Config.domain || document.domain;
config.scripts = config.scripts || APE.Config.scripts;
config.server = config.server || APE.Config.server;
Expand Down Expand Up @@ -125,7 +125,7 @@ APE.Client.prototype.load = function(config){
} else {
iframe.setAttribute('src',(config.secure ? 'https': 'http') + '://' + config.frequency + '.' + config.server + '/?[{"cmd":"script","params":{"domain":"' + document.domain +'","scripts":["' + config.scripts.join('","') + '"]}}]');
if (navigator.product == 'Gecko') {
//Firefox fix, see bug  #356558
//Firefox fix, see bug #356558
// https://bugzilla.mozilla.org/show_bug.cgi?id=356558
iframe.contentWindow.location.href = iframe.getAttribute('src');
}
Expand Down
1 change: 0 additions & 1 deletion Demos/config.js
Expand Up @@ -10,4 +10,3 @@ APE.Config.server = 'ape.local.ape-project.org:6969'; //APE server URL
for (var i = 0; i < arguments.length; i++)
APE.Config.scripts.push(APE.Config.baseUrl + '/Source/' + arguments[i] + '.js');
})('mootools-core', 'Core/APE', 'Core/Events', 'Core/Core', 'Pipe/Pipe', 'Pipe/PipeProxy', 'Pipe/PipeMulti', 'Pipe/PipeSingle', 'Request/Request','Request/Request.Stack', 'Request/Request.CycledStack', 'Transport/Transport.longPolling','Transport/Transport.SSE', 'Transport/Transport.XHRStreaming', 'Transport/Transport.JSONP', 'Transport/Transport.WebSocket', 'Core/Utility', 'Core/JSON');
APE.Config.scripts.push(APE.Config.baseUrl + '/Plugins/Debug/Client/Plugins/Debug.js');

0 comments on commit bdde97b

Please sign in to comment.