Qual: update iwebkit to 5.0.4 version

This commit is contained in:
Regis Houssin
2010-04-12 21:49:40 +00:00
parent 6ccd3bbc75
commit 98a1fe553b
43 changed files with 1919 additions and 1475 deletions

View File

@@ -0,0 +1,29 @@
var iWebkit;
if (!iWebkit) {
iWebkit = window.onload = function () {
function fullscreen() {
var a = document.getElementsByTagName("a");
for (var i = 0; i < a.length;i++) {
if (a[i].className.match("noeffect")) {
}
else {
a[i].onclick = function () {
window.location = this.getAttribute("href");
return false;
};
}
}
}
function hideURLbar() {
window.scrollTo(0, 0.9);
}
iWebkit.init = function () {
fullscreen();
hideURLbar();
};
iWebkit.init();
};
}