Mootools 1.2.3 and Clientcide 2.1.0 Released Today
Today have been released mootools 1.2.3, the last step before release the 2.0 version. It is mainly a set of bug fixes, but have a new great feature for frameworks compatibility.
Although it is not recommended to use different frameworks at the same page, it is true that there are cases that we can’t control that, like plug-in developers that don’t use to know where their plug-ins will be used. The solution is very simple, just change the $ by document.id().
Before:
1 | var el = $('myid'); |
And now can be:
1 | var el = document.id('myid'); |
Today have been also release Clientcide 2.1.0, which main change is the deprecation of $ for compatibility with other frameworks.
So, now i will need 15 minutes to upgrade all my plug-ins.
Source: mootools blog
If you want to check what I am working on now, then follow me at twitter @aartiles24





















Información Bitacoras.com…
Valora en Bitacoras.com: Hoy ha sido lanzada la versión 1.2.3 de mootools, la que constituye el último paso de cara a la versión 2.0. El release es principalmente un conjunto de correciones de errores, pero hay que destacar la nueva funcionalidad de…