This is a migrated thread and some comments may be shown as answers.

Animation problem

1 Answer 50 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Vladimir
Top achievements
Rank 1
Vladimir asked on 10 Jun 2012, 03:15 PM

I think I have found a typo in your code, which leads to the problems with animation.

extend(kendo.fx, {

...

animate: function(elements, properties, options) {

element.animate(multiple, extend({ queue: false, show: false, hide: false, duration: options.duration, complete: options.complete })); 

...

The extend(...) call works as if it's called with window.extend(...), which extend window object with some properties.

I'm not sure that it's what you have expected to do.

Please confirm.

1 Answer, 1 is accepted

Sort by
0
Kamen Bundev
Telerik team
answered on 11 Jun 2012, 07:04 AM
Hi Vladimir,

This has been fixed some time ago - it was left accidentally and was not intended to extend the window object. This caused an exception when animating an element in a frame in IE9+ since the ownerDocument is read-only for security reasons. The service pack released on 15th May should include the fix (which is basically removing the surrounding extend()).

Greetings,
Kamen Bundev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
General Discussions
Asked by
Vladimir
Top achievements
Rank 1
Answers by
Kamen Bundev
Telerik team
Share this question
or