Can someone explain the output from jQuery-Migrate?

Can someone explain the output from jQuery-Migrate?

Hello,

I have a web site that uses jQuery and Telerik's KendoUI Javascript library. It was written using ASP.NET MVC3, although I don't think that's relevant to the issue here. The site was working fine, but has somehow broken. Telerik suggested I upgraded to the latest version of KendoUI, which I did, but the problems persist.

They then suggested using jQuery-Migrate, as they thought I was using deprecated jQuery methods. I'm not convinced of this, but added the plug-in anyway. However, I don't really understand the output, and was hoping someone could help me.

If you look at the following screenshot, you'll see the first of the two warnings I got...


As you can see, most of the warnings seem to be from jQuery itself, or KendoUI, so there's not a lot I can do about that. The two entries in there that relate to my code refer to a showWindow mthod, which looks like this...

  1. function showWindow(url, title) {
  2.   $("#Details").data("kendoWindow")
  3.     .content("<div class=\"k-loading-image\" style=\"height: 100%; width: 99%; background-position: center center: #ddd\"></div>")
  4.     .refresh({
  5.       url: url
  6.     })
  7.     .title(title)
  8.     .open();
  9.   $(".k-window").css({ top: $(window).scrollTop() + 30, left: ($(window).width() - $(".k-window").width()) / 2 });
  10. }
...and the line that calls it...
  1.   showWindow("@Url.Content("/Home/SupportTicketDetails/")" + dataItem.ID, title);
As far as I can see, neither of these contain anything that could be a problem.

The other warning I got contained a whole load of entries that were almost all lines in the jQuery.min.js file, plus two in the KendoUI Javascript file.

Anyone able to explain what I'm supposed to do with this output, as I don't understand what it's telling me. I'm using jQuery 1.9.1, which is what came with KendoUI, so I would hope that this would be compatible with the library.

Sorry if this isn't clear, or if you need more info. I'm a bit of a novice at jQuery! Thanks for any help.