intanpalupidn / jquery-oembed

Automatically exported from code.google.com/p/jquery-oembed
0 stars 0 forks source link

JQuery 1.5 #23

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Run it against JQuery 1.5
2.
3.

What is the expected output? What do you see instead?
Javascript falls over with:

jquery-1.5.js:478
Uncaught TypeError: Property 'type' of object function ( selector, context ) {
        // The jQuery object is actually just the init constructor 'enhanced'
        return new jQuery.fn.init( selector, context, rootjQuery );
    } is not a function

jquery-1.5.js:478
Uncaught TypeError: Property 'type' of object function ( selector, context ) {
        // The jQuery object is actually just the init constructor 'enhanced'
        return new jQuery.fn.init( selector, context, rootjQuery );
    } is not a function

What version of the product are you using? On what operating system?
1.0.5 against JQuery 1.5
Fedora/Chrome

Please provide any additional information below.
Resolved it with change to line 200

var oembed = $.extend(data);
-- change to -->
var oembed = $.extend(data,null);

Original issue reported on code.google.com by pistonhe...@googlemail.com on 4 Feb 2011 at 1:22

GoogleCodeExporter commented 8 years ago

Original comment by rchamo...@gmail.com on 4 Feb 2011 at 1:36