Using 139h with SuperOrders, I applied the optional rollover edits to admin/includes/general.js, as per the following snippet, but cannot see what it does.
Did I add the code rightly?
What am I supposed to see happen?
Thanks in advanceCode:function rowOverEffect(object) {
if (object.className == 'dataTableRow') object.className = 'dataTableRowOver';
// start Sales_report
if (object.className == 'totalRow') object.className = 'totalRowOver';
if (object.className == 'lineItemRow') object.className = 'lineItemRowOver';
// end Sales_report
// start Super Orders
if (object.className == 'paymentRow') object.className = 'paymentRowOver';
if (object.className == 'purchaseOrderRow') object.className = 'purchaseOrderRowOver';
if (object.className == 'refundRow') object.className = 'refundRowOver';
// end Super Orders
}
function rowOutEffect(object) {
if (object.className == 'dataTableRowOver') object.className = 'dataTableRow';
// start Sales_report
if (object.className == 'totalRowOver') object.className = 'totalRow';
if (object.className == 'lineItemRowOver') object.className = 'lineItemRow';
// end Sales_report
// start Super Orders
if (object.className == 'paymentRowOver') object.className = 'paymentRow';
if (object.className == 'purchaseOrderRowOver') object.className = 'purchaseOrderRow';
if (object.className == 'refundRowOver') object.className = 'refundRow';
// end Super Orders
}