Re: 'ox19e is not a function' javascript error

  •  02-05-2008, 8:32 AM

    Re: 'ox19e is not a function' javascript error

    Hey Adam,
     
    Still fails. I'm using FF 2.0.0.11.
     
    Place mouse inside table cell
    Click <td> breadcrumb button at bottom
    Select Style
    When you OK the style dialog you get the error.
     
    -------------------- 
    I did some digging. Search for Ox19e in CuteEditorImplementation.js and locate this function:  (that's an O not a zero)
     
    function Ox6ec(element,Ox19e,Ox6ed,Ox6ee,Ox6ef){
        var Ox5b0=Ox6d3();
     
        function Ox6f0(Ox60){
            if(!Ox60){
                Ox6d4(Ox5b0,true) ;
                Ox8d6() ;
            } ;
     
            if(Ox19e!=null){
                Ox19e(Ox60);
            };
        };
     
        Ox6f2(element,Ox6f0,Ox6ed,Ox6ee,Ox6ef) ;
    }
     
    See how the embedded function ox6f0 is the callback for the modal dialog call (ox6f2)?

    When the dialog closes and the callback fires, ox19e equals the string "style" which is not null but also not a function - thus the error when this line tries to execute in the callback:
     
    Ox19e(Ox60)
     
    Hope this helps. For now I've commented out this call to Ox19e. (having no idea what the side affect is...)
     
    BTW - Debugging obfuscated code is a drag. Any chance since I have a source code license for v5, I can get the unobfus source for 6? 
     
    If I promise to keep sharing what I find? :)
     
    Thanks for looking into it. 
    Michael


    Minimally helpful screenshot from Firebug (unobfus code would make this picture much prettier ;)
     

     
     
View Complete Thread