Skip to content

Commit a065459

Browse files
committed
Fixed a few coffee script warnings:
- IE 6 iframe url is now # instead of a javascript - ExtJS is initialized with a Ext = window.Ext
1 parent c18688e commit a065459

13 files changed

+14
-12
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.build
22
/node_modules
3+
/.idea

scripts/bundled/html4+html5/dojo.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/bundled/html4+html5/extjs.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/bundled/html4+html5/jquery.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/bundled/html4+html5/mootools.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/bundled/html4+html5/native.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/bundled/html4+html5/right.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/bundled/html4+html5/zepto.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/bundled/html5/extjs.history.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/compressed/history.adapter.extjs.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/compressed/history.html4.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/uncompressed/history.adapter.extjs.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
// Localise Globals
1313
var
14-
History = window.History = window.History||{};
14+
History = window.History = window.History||{},
15+
Ext = window.Ext;
1516

1617
window.JSON = {
1718
stringify: Ext.JSON.encode,

scripts/uncompressed/history.html4.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@
292292
// IE 6 requires iframe to have a src on HTTPS pages, otherwise it will throw a
293293
// "This page contains both secure and nonsecure items" warning.
294294
iframe.setAttribute('id', iframeId);
295-
iframe.setAttribute('src', 'javascript:false');
295+
iframe.setAttribute('src', '#');
296296
iframe.style.display = 'none';
297297

298298
// Append iFrame

0 commit comments

Comments
 (0)