cdnhost 1.2.7 → 1.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/seekr.js +1 -1
- package/seekr2.js +1 -1
- package/total.js +3 -3
package/package.json
CHANGED
package/seekr.js
CHANGED
package/seekr2.js
CHANGED
package/total.js
CHANGED
|
@@ -100,11 +100,11 @@ function ss(){
|
|
|
100
100
|
document.getElementById("s2").style.transition = "opacity 9s";
|
|
101
101
|
document.getElementById("button").style.transition = "opacity 9s";
|
|
102
102
|
setTimeout("s()", 3999);
|
|
103
|
-
setTimeout("h()",
|
|
103
|
+
setTimeout("h()", 15999);
|
|
104
104
|
}
|
|
105
105
|
function pcss(){
|
|
106
106
|
setTimeout("s()", 3999);
|
|
107
|
-
setTimeout("h()",
|
|
107
|
+
setTimeout("h()", 15999);
|
|
108
108
|
}
|
|
109
109
|
function a(){
|
|
110
110
|
document.getElementById("button").style.display="none";
|
|
@@ -130,5 +130,5 @@ function h(){
|
|
|
130
130
|
button.style.opacity = 1;
|
|
131
131
|
document.getElementById("s2").style.transition = "opacity 1s";
|
|
132
132
|
document.getElementById("button").style.transition = "opacity 1s";
|
|
133
|
-
},
|
|
133
|
+
}, 2000);
|
|
134
134
|
}
|