Changes between Initial Version and Version 2 of Ticket #39246
- Timestamp:
- 12/12/2016 09:00:21 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #39246
- Property Owner set to obenland
-
Property
Status
changed from
new
toaccepted
- Property Focuses javascript added
-
Property
Milestone
changed from
Awaiting Review
to4.7.1
-
Ticket #39246 – Description
initial v2 5 5 6 6 on the first deletion, I see a JS error in the console: 7 Error: Syntax error, unrecognized expression: [data-slug="twentyfifteen" 7 `Error: Syntax error, unrecognized expression: [data-slug="twentyfifteen"` 8 8 9 9 In the wp-admin/js/theme.js there is a line: 10 10 11 $( '[data-slug="' + response.slug + '"' ).css( { backgroundColor:'#faafaa' } ).fadeOut( 350, function() { 11 `$( '[data-slug="' + response.slug + '"' ).css( { backgroundColor:'#faafaa' } ).fadeOut( 350, function() {` 12 12 13 13 in which I believe the shortcode is not closed and should be 14 14 15 $( '[data-slug="' + response.slug + '"]' ).css( { backgroundColor:'#faafaa' } ).fadeOut( 350, function() { 15 `$( '[data-slug="' + response.slug + '"]' ).css( { backgroundColor:'#faafaa' } ).fadeOut( 350, function() {` 16 16 17 17 I was testing on Safari Version 10.0.1 (12602.2.14.0.7)