-
Notifications
You must be signed in to change notification settings - Fork 245
Fix breaking out of <p> when deleting across paragraphs in FF #97
Conversation
@@ -13,7 +13,7 @@ | |||
"plumber-write": "~0.2.0", | |||
"q": "~1.0.0", | |||
"request": "~2.33.0", | |||
"selenium-webdriver": "~2.37.0" | |||
"selenium-webdriver": "^2.41.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The caret, on the other hand, is more relaxed. It will update you to the most recent major version (the first number). ^1.2.3 will match any 1.x.x release including 1.3.0, but will hold off on 2.0.0.
http://fredkschott.com/post/2014/02/npm-no-longer-defaults-to-tildes/
It looks like you forgot to commit |
Sadly Travis is being slow: https://travis-ci.org/guardian/scribe/branches |
@OliverJAsh ping |
|
||
var realChangedNodes = allChangedNodes. | ||
filter(notEmptyTextNode). | ||
filter(notSelectionMarkerNode); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strange indentation?
Looks good! Nice work, love the use of DOM |
Tests passed, let's release this! |
Fix breaking out of <p> when deleting across paragraphs in FF
Please do follow this up with an isolated case. |
No description provided.