We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392ea4b commit 4adbca6Copy full SHA for 4adbca6
js/greeting.js
@@ -1,5 +1,12 @@
1
vargreeting=(function(){
2
3
+varbind=function(){
4
+window.setInterval(function(){
5
+clear();
6
+render();
7
+},1000);
8
+};
9
+
10
varclear=function(){
11
vargreeting=helper.e(".greeting");
12
while(greeting.lastChild){
@@ -51,6 +58,7 @@ var greeting = (function(){
51
58
};
52
59
53
60
varinit=function(){
61
+bind();
54
62
render();
55
63
56
64
js/version.js
@@ -1,7 +1,7 @@
varversion=(function(){
// version is normally bumped when the state needs changing or any new functionality is added
-varcurrent="2.12.1";
+varcurrent="2.12.2";
varcompare=function(a,b){
varpa=a.split(".");
0 commit comments