We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ca0b1 commit 8bec57aCopy full SHA for 8bec57a
src/core/utils.js
@@ -5,8 +5,11 @@ const _MS_PER_DAY = 1000 * 60 * 60 * 24; // Milliseconds per day.
5
6
$.fn.safeClone = function () {
7
var $clone = this.clone();
8
- // IE BUG : Placeholder text becomes actual value after deep clone on textarea
+ // IE 9-11 BUG : Placeholder text becomes actual value after deep clone on textarea
9
// https://connect.microsoft.com/IE/feedback/details/781612/placeholder-text-becomes-actual-value-after-deep-clone-on-textarea
10
+ // Ref:
11
+ // https://github.com/Patternslib/Patterns/issues/412
12
+ // https://github.com/Patternslib/Patterns/pull/410
13
if (window.document.documentMode) {
14
$clone.findInclusive(":input[placeholder]").each(function (i, item) {
15
var $item = $(item);
0 commit comments