ajax/common.js makes use of deprecated dojo.animation.Timer
-----------------------------------------------------------
Key: COCOON-2059
URL: https://issues.apache.org/jira/browse/COCOON-2059
Project: Cocoon
Issue Type: Bug
Components: Blocks: Ajax
Affects Versions: 2.1.11-dev (Current SVN), 2.2-dev (Current SVN)
Reporter: Alexander Klimetschek
Following code uses deprecated stuff from dojo 0.4.1:
periodicalUpdate: function(delay, href, target, insertion) {
dojo.require("dojo.animation.Timer");
var timer = new dojo.animation.Timer(delay);
timer.onTick = function() {
....
Dojo in debug mode says: DEPRECATED: dojo.animation.Timer is now
dojo.lang.timing.Timer 0.5
To fix that, one should simply use:
periodicalUpdate: function(delay, href, target, insertion) {
dojo.require("dojo.lang.timing.Timer");
var timer = new dojo.lang.timing.Timer(delay);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.