Not terribly troublesome, only they tend to break our coding conventions!
JavaScript editing is a nightmare, the editor appears to randomly jump about the page, which is really annoying as I end up typing code in all sorts of places then needing to go back and figure out whats just happened.
It is still after all only a preview version, the more we play with these types of apps, the sooner we can solve the majority of the bugs/issues!
1 comment:
It is certainly a step in the right direction. The editor appears to be faster, however I've experienced several issues with the formatting.
For example,
if(isHappy)
smile();
becomes
if(isHappy){
smile();
}
!annoying! Also:
if(isHappy){
smile();
}
else{
cry();
}
becomes
if(isHappy){
smile();
}else{
cry();
}
Not terribly troublesome, only they tend to break our coding conventions!
JavaScript editing is a nightmare, the editor appears to randomly jump about the page, which is really annoying as I end up typing code in all sorts of places then needing to go back and figure out whats just happened.
It is still after all only a preview version, the more we play with these types of apps, the sooner we can solve the majority of the bugs/issues!
regards
sabeau
Post a Comment