Re: [Moo] Firefox 18 breaks mootools 1.2.5 selector engine

2013-02-19 Thread Arian Stolwijk
You can now use MooTools 1.2.6 http://mootools.net/blog/2013/02/19/mootools-1-2-6-released/ On Fri, Jan 18, 2013 at 10:14 AM, Arian Stolwijk wrote: > Adding that line (at the top of your mootools.js file) should be enough. > If you want to rebuild, either wait until the mootools.net website is >

Re: [Moo] Firefox 18 breaks mootools 1.2.5 selector engine

2013-01-18 Thread Arian Stolwijk
Adding that line (at the top of your mootools.js file) should be enough. If you want to rebuild, either wait until the mootools.net website is updated, or use github.com/kamicane/packager. http://mootools.net/blog/2012/08/13/optimizing-mootools-builds-sans-internet-explorer/ contains all the comma

Re: [Moo] Firefox 18 breaks mootools 1.2.5 selector engine

2013-01-17 Thread hx
I mean build 1.2.5 core, or can I just add the code try { delete String.prototype.contains; } catch(e) {} to my old mootools-core.js file ? is it enough ? 2013/1/18 hx > howto build it ? > > > 2013/1/11 Arian Stolwijk > >> Yeah, see https://github.com/mootools/mootools-core/issues/2402 and >> h

Re: [Moo] Firefox 18 breaks mootools 1.2.5 selector engine

2013-01-17 Thread hx
howto build it ? 2013/1/11 Arian Stolwijk > Yeah, see https://github.com/mootools/mootools-core/issues/2402 and > https://groups.google.com/d/msg/mootools-users/W7MHwTFHYQ4/B4HcR951XQYJ > > > On Thu, Jan 10, 2013 at 10:29 PM, Adriaan wrote: > >> Working jsfiddle example here: http://jsfiddle.ne

RE: [Moo] Firefox 18 breaks mootools 1.2.5 selector engine

2013-01-10 Thread Adriaan Nel
Thank you very much, that worked perfectly. Adriaan From: mootools-users@googlegroups.com [mailto:mootools-users@googlegroups.com] On Behalf Of Arian Stolwijk Sent: 10 January 2013 23:40 To: mootools-users@googlegroups.com Subject: Re: [Moo] Firefox 18 breaks mootools 1.2.5 selector

Re: [Moo] Firefox 18 breaks mootools 1.2.5 selector engine

2013-01-10 Thread Arian Stolwijk
Yeah, see https://github.com/mootools/mootools-core/issues/2402 and https://groups.google.com/d/msg/mootools-users/W7MHwTFHYQ4/B4HcR951XQYJ On Thu, Jan 10, 2013 at 10:29 PM, Adriaan wrote: > Working jsfiddle example here: http://jsfiddle.net/CfJyd/ > > The problem only occurs in Firefox 18 that

[Moo] Firefox 18 breaks mootools 1.2.5 selector engine

2013-01-10 Thread Adriaan
Working jsfiddle example here: http://jsfiddle.net/CfJyd/ The problem only occurs in Firefox 18 that I know of. The following html: Test Div This should stay the same With this js: window.addEvent('domready',function() { $$('.test').set('html','Only Test should update'); }); Results i