Adobe Edge 2 is now available, but they still haven’t gotten around to making it work when jQuery is in noConflict mode.
Again, you will still need to edit your project file like so:
/**
* Adobe Edge DOM Ready Event Handler
*/
$(window).ready(function() {
$.Edge.initialize(symbols);
});
/**
* Adobe Edge Timeline Launch
*/
$(window).load(function() {
$.Edge.play();
});
I simply added the noConflict() function and changed the four instances of “$” to “jQuery”.
/**
* Adobe Edge DOM Ready Event Handler
*/
jQuery.noConflict();
jQuery(window).ready(function() {
jQuery.Edge.initialize(symbols);
});
/**
* Adobe Edge Timeline Launch
*/
jQuery(window).load(function() {
jQuery.Edge.play();
});
(Source: Skynet Solutions)
By Blaine Schmeisser


