changing the connector adapter to serve a maximum of 30 operations

This commit is contained in:
DadaMonad
2015-01-19 10:19:00 +00:00
parent 00458bab58
commit 592a0969d3
10 changed files with 118 additions and 70 deletions

View File

@@ -50,5 +50,10 @@ window.onload = function(){
}
}
});
yatta.val("textfield","stuff", "mutable");
connector.whenSynced(function(){
if(yatta.val("textfield") == null){
yatta.val("textfield","stuff", "mutable");
}
})
};