-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show server url to connect in settings.
Not everyone know that this can be copied from the browser url bar Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
- Loading branch information
1 parent
f4b96cc
commit 5e93372
Showing
5 changed files
with
175 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
(function($, OC, _) { | ||
$(document).ready(function() { | ||
initLinkToClipboard() | ||
$('#endpoint-url').on('click', function() { | ||
$(this).select() | ||
}) | ||
}) | ||
|
||
function initLinkToClipboard() { | ||
var originalTitle = t('firstrunwizard', 'Copy to clipboard') | ||
|
||
/* reused from settings/js/authtoken_view.js */ | ||
$('#endpoint-url + .clipboardButton').tooltip({ | ||
placement: 'bottom', | ||
title: originalTitle, | ||
trigger: 'hover' | ||
}) | ||
|
||
// Clipboard! | ||
var clipboard = new Clipboard('.clipboardButton') | ||
clipboard.on('success', function(e) { | ||
var $input = $(e.trigger) | ||
|
||
// show copied notification | ||
$input.tooltip('hide') | ||
.attr('data-original-title', t('firstrunwizard', 'Copied!')) | ||
.tooltip('fixTitle') | ||
.tooltip({ | ||
placement: 'bottom', | ||
trigger: 'manual' | ||
}) | ||
.tooltip('show') | ||
|
||
// revert back to original title | ||
_.delay(function() { | ||
$input.tooltip('hide') | ||
.attr('data-original-title', originalTitle) | ||
.tooltip('fixTitle') | ||
}, 3000) | ||
}) | ||
|
||
clipboard.on('error', function(e) { | ||
var $input = $(e.trigger) | ||
var actionMsg = '' | ||
if (/iPhone|iPad/i.test(navigator.userAgent)) { | ||
actionMsg = t('firstrunwizard', 'Not supported!') | ||
} else if (/Mac/i.test(navigator.userAgent)) { | ||
actionMsg = t('firstrunwizard', 'Press ⌘-C to copy.') | ||
} else { | ||
actionMsg = t('firstrunwizard', 'Press Ctrl-C to copy.') | ||
} | ||
|
||
// show error | ||
$input.tooltip('hide') | ||
.attr('data-original-title', actionMsg) | ||
.tooltip('fixTitle') | ||
.tooltip({ | ||
placement: 'bottom', | ||
trigger: 'manual' | ||
}) | ||
.tooltip('show') | ||
|
||
// revert back to original title | ||
_.delay(function() { | ||
$input.tooltip('hide') | ||
.attr('data-original-title', originalTitle) | ||
.tooltip('fixTitle') | ||
}, 3000) | ||
}) | ||
} | ||
})(jQuery, OC, _) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.