add Show All to clipboard

This commit is contained in:
Doug Bell 2010-07-15 15:12:12 -05:00
parent f0b9408ab1
commit fb32813bd9
2 changed files with 7 additions and 2 deletions

View file

@ -227,7 +227,8 @@ WebGUI.Admin.prototype.requestUpdateClipboard
scope: this
};
var ajax = YAHOO.util.Connect.asyncRequest( 'GET', '?op=admin;method=getClipboard', callback );
var showAll = document.getElementById( 'clipboardShowAll' ).checked ? ";all=1" : ";all=0";
var ajax = YAHOO.util.Connect.asyncRequest( 'GET', '?op=admin;method=getClipboard' + showAll, callback );
};
/**