We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 23219
    • 18 Posts
    Replace this in quickedit.js:

     menuClick: function(event) {
    
     var event = new Event(event);
    .......
    }
    


    with this:

     menuClick: function(evnt) {
    
      var event = new Event(evnt);
    .......
     )
    


    This will remove the warning in Firefox debug console which many people use for debugging CSS and Javascript. It is a small change and removes unnecessary warning which is really annoying especially when you develop your own site and you constantly need to clear the errors to view your own ones...

    The other report: take a look at magnifying glass icon on modxcms.com page in IE6 - you will see a "Go". Again unnecessary thing - try this as button replacement (tested in IE 5.5, 6, 7, firefox, opera... all works): text-indent:-9999px; doesn’t work well in IE and padding can be tricky to make compatible with all browsers - anyway here is a better one:

    old:
    .FSF_submit, .FSF_submit:focus {
    background:transparent url(../images/greenzi/search.jpg) no-repeat scroll 0%;
    border:0pt none;
    cursor:pointer;
    height:22px;
    margin-left:5px;
    text-indent:-9999px;
    width:22px;
    }
    


    new:
    .FSF_submit, .FSF_submit:focus {
        background: url("../images/greenzi/search.jpg") top left no-repeat;
        margin-left: 5px;
        height: 22px;
        width: 22px;
        border: 0;
        cursor: pointer;
        padding: 25px 0 0;
        overflow: hidden;
        vertical-align: top;
        }
    


    By the way... padding 25px should be increased a bit to work properly in opera... by testing it a bit you’ll get a right value... it needs to be a few pixels more than height anyway. I wrote this just quickly and pasted a code from my own CSS where image was 18 pixels or so... and I have firebug only in firefox and not in opera smiley
      • 10487 MODX Staff
      • 1,535 Posts
      Thanks phazze, the first issue (with QuickEdit) has now fixed in SVN and will be in the 0.9.6.2 release.
        Garry Nutting
        Senior Developer
        MODX, LLC

        Email: [email protected]
        Twitter: @garryn
        Web: modx.com