I'm trying to upgrade Uvumidropdown menu for use with MooTools 1.3.2 or 1.4.1 so that I can use a MooTool slider as well. The first thing I did was to replace the mootools call to a "mootools-dropdown.js" with a call to "mootools-1.2.5.js" given that the contents of "mootools-dropdown.js" begins with

var MooTools={version:"1.2.0",build:""};var Native=function(J)... 

so obviously this is a MooTool core file. I did this to troubleshoot the menu, and make sure that the core file was not a custom file.

<script type="text/javascript" src="js/mootools-1.2.5-core-yc.js"> </script>
<script type="text/javascript" src="xjs/mootools-dropdown.js"> </script>
<script type="text/javascript" src="js/UvumiDropdown-compressed.js"> </script>
<script type="text/javascript">
    window.addEvent('domready', function () {
       var menu = new UvumiDropdown('dropdown-demo');
    });

As it happens, the dropdown menu does not work with 1.2.5.

Is my presumption that the menu should work with 1.2.5 incorrect?

My findings lead me to believe that the mootools core file has been customized, but I have no way to compare it with an original 1.2.0 file.

link|improve this question

62% accept rate
no. there were breaking changes between 1.2 and 1.2.5 - mostly in 1.2.3 and 1.2.5 but breaking none-the-less. so it depends how the code was written. saying 'does not work' is not a real question. there are problems and solutions for the upgrade process, it's not a magic wand. – Dimitar Christoff Nov 22 '11 at 17:10
Answer stackoverflow.com/questions/8218825/… – sandraqu Dec 1 '11 at 20:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.