- Don't show Mac clipboard warning in Create Bib window in Fx3.5, which supports HTML copy

- Remove warning from preferences window, because there's not enough room anyway
This commit is contained in:
Dan Stillman 2009-07-15 21:54:29 +00:00
parent 3820f8f2bd
commit 87969d106d
3 changed files with 2 additions and 9 deletions

View file

@ -93,9 +93,8 @@ var Zotero_File_Interface_Bibliography = new function() {
document.getElementById('output-radio').selectedItem =
document.getElementById(Zotero.Prefs.get("export.bibliographySettings"));
// disable clipboard on the Mac, because it can't support formatted
// output
if(Zotero.isMac) {
// disable clipboard in Fx3.0 on the Mac, because it can't support formatted output
if(Zotero.isMac && Zotero.isFx30) {
document.getElementById("mac-clipboard-warning").hidden = false;
}
}

View file

@ -632,10 +632,6 @@ function deleteSelectedQuickCopySite() {
function updateQuickCopyInstructions() {
if (Zotero.isMac) {
document.getElementById('quickCopy-macWarning').setAttribute('hidden', false);
}
var prefix = Zotero.isMac ? 'Cmd+Shift+' : 'Ctrl+Alt+';
var key = Zotero.Prefs.get('keys.copySelectedItemsToClipboard');

View file

@ -551,8 +551,6 @@ To add a new preference:
</hbox>
<separator/>
<label id="quickCopy-macWarning" hidden="true" value="&zotero.preferences.quickCopy.macWarning;"/>
</groupbox>
</prefpane>