Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replacement for #20602 #21236

Merged
merged 6 commits into from
Nov 28, 2016
Merged

Replacement for #20602 #21236

merged 6 commits into from
Nov 28, 2016

Conversation

mdo
Copy link
Member

@mdo mdo commented Nov 28, 2016

This branch updates #20602 with latest from v4-dev so I can get tests passing and squash on merge.

TJ Kohli and others added 5 commits August 31, 2016 19:42
It needed to be "Press ⌘C to copy"
Updated copy command to concatenated string to prevent potential issues
@mdo mdo added this to the v4.0.0-alpha.6 milestone Nov 28, 2016
@@ -73,7 +73,8 @@
})

clipboard.on('error', function (e) {
var fallbackMsg = /Mac/i.test(navigator.userAgent) ? 'Press \u2318 to copy' : 'Press Ctrl-C to copy'
const modifierKey = /Mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'
let fallbackMsg = 'Press ' + modifierKey + 'C to copy'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'fallbackMsg' is never reassigned. Use 'const' instead prefer-const
Unexpected string concatenation prefer-template

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be using ES5 and not ES6. let and const should be var. Then it will match the rest of the file and support all supported browsers.

@@ -73,7 +73,8 @@
})

clipboard.on('error', function (e) {
var fallbackMsg = /Mac/i.test(navigator.userAgent) ? 'Press \u2318 to copy' : 'Press Ctrl-C to copy'
const modifierKey = /Mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'
let fallbackMsg = 'Press ' + modifierKey + 'C to copy'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be using ES5 and not ES6. let and const should be var. Then it will match the rest of the file and support all supported browsers.

@@ -73,7 +73,8 @@
})

clipboard.on('error', function (e) {
var fallbackMsg = /Mac/i.test(navigator.userAgent) ? 'Press \u2318 to copy' : 'Press Ctrl-C to copy'
var modifierKey = /Mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'
var fallbackMsg = 'Press ' + modifierKey + 'C to copy'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected var, use let or const instead no-var
Unexpected string concatenation prefer-template

@@ -73,7 +73,8 @@
})

clipboard.on('error', function (e) {
var fallbackMsg = /Mac/i.test(navigator.userAgent) ? 'Press \u2318 to copy' : 'Press Ctrl-C to copy'
var modifierKey = /Mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected var, use let or const instead no-var

@mdo mdo merged commit a6f5488 into v4-dev Nov 28, 2016
@mdo mdo deleted the tjkohli-patch-5 branch November 28, 2016 21:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants