This is another fragment that it's now rendering.

function( selector, context ) {
                // The jQuery object is actually just the init constructor 
'enhanced'
                return new jQuery.fn.init( selector, context );

After beginning to use the uncompress version of the library.

Here it's the code where the rendered function resides.

var
        // Will speed up references to window, and allows munging its name.
        window = this,
        // Will speed up references to undefined, and allows munging its name.
        undefined,
        // Map over jQuery in case of overwrite
        _jQuery = window.jQuery,
        // Map over the $ in case of overwrite
        _$ = window.$, jQuery = window.jQuery = window.$ = function(
selector, context ) {
                // The jQuery object is actually just the init constructor 
'enhanced'
                return new jQuery.fn.init( selector, context );
        },

        // A simple way to check for HTML strings or ID strings
        // (both of which we optimize for)
        quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,
        // Is it a simple selector
        isSimple = /^.[^:#\[\.,]*$/;


On Tue, Apr 14, 2009 at 1:58 PM, Rafael George <[email protected]> wrote:
> Hi guys, i know this is not a merb related question but as a lot of
> Merb developers use jQuery maybe somebody can help me.
>
> After adding jQuery using the <script> tag and putting some code for
> an ajax interval refresh, every time i go to the layout page i see
> this in the footer
>
> function (E, F) { return new (o.fn.init)(E, F); }
>
> The thing is that when i hit 'view source' i can't see that in the
> html but if i select it and then see the source again i see it in the
> footer.
>
> Can somebody give me a suggestion about this ?
>
> Thanks in advance.
>
> --
> Rafael George
>



-- 
Rafael George

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"merb" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/merb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to