Re: [Moo] Request.JSONP({})

2015-09-16 Thread Ryan Mitchell
Hello If you use a callbackKey of ‘callback’ it seems to work. See: https://api.instagram.com/v1/media/popular?access_token=&client_id=95e09e6147344028bfb8972ce0f3a0b0&count=10&callback=Request.JSONP.request_map.request_0

Re: [Moo] Request.JSON

2012-07-10 Thread Ryan Mitchell
If you're using url rewriting at the apache end of things then it might not be passing the post data. On 10 Jul 2012, at 13:44, Arian Stolwijk wrote: > http://jsfiddle.net/Jemrp/ is doing a POST request according to the Network > tab in the chrome developer console. > > On Tue, Jul 10, 201

Re: [Moo] prevent button to drag parent

2012-07-06 Thread Ryan Mitchell
Hello http://jsfiddle.net/r5Hef/1/ This prevents the draggable div moving when you mousedown on the button. Does that do what you mean? Ryan On 6 Jul 2012, at 08:46, woomla wrote: > Hi, > > I have a draggable div with a button on it. When I click on the button I can > drag the div. I don'

Re: [Moo] Lens effect with Mootools

2012-07-01 Thread Ryan Mitchell
Hello It would be a really quick job to convert that jQuery script to a MooTools class. Do you think that is something you could do? On 1 Jul 2012, at 09:09, ZsZs wrote: > Hi, > > I'm curious if a Lens effect plugin for Mootools exists. I'm looking for > exactly the same functionality what

Re: [Moo] help required jquery to mootools

2012-06-13 Thread Ryan Mitchell
Hello document.id should work fine. The problem is that you are including MooTools 1.12 - document.id is supported from 1.3 upwards (I think - it may be supported earlier than that). The syntax changed a fair bit from 1.12 to 1.2, it would be worth upgrading to 1.3 or even 1.4 if that is possi

Re: [Moo] help required jquery to mootools

2012-06-12 Thread Ryan Mitchell
> as a matter of interest (based on you previous reply) is it valid for me use > this form: > slider.getElement('ul').getStyle('margin-left').toInt() - slider.getWidth() > instead of: > $(slider).getElement('ul').getStyle('margin-left').toInt() - slider.getWidth() > > provided that i have someth

Re: [Moo] help required jquery to mootools

2012-06-12 Thread Ryan Mitchell
You should look into Fx.Tween and Fx.Morph http://mootools.net/docs/core/Fx/Fx.Tween http://mootools.net/docs/core/Fx/Fx.Morph You can use .tween() and .morph() if that helps you get a similar syntax to jQuery.

Re: [Moo] help required jquery to mootools

2012-06-12 Thread Ryan Mitchell
Hello Rather than $('#slider ul') Try $('slider').getElement('ul') Then $('slider').getElement('ul').getStyle('margin-left').toInt() should work once you make that change. On 12 Jun 2012, at 13:44, iiminov wrote: > hi everyone, > > > apologies for double posting. as per my previous