File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,11 @@ const _MS_PER_DAY = 1000 * 60 * 60 * 24; // Milliseconds per day.
55
66$ . fn . safeClone = function ( ) {
77 var $clone = this . clone ( ) ;
8- // IE BUG : Placeholder text becomes actual value after deep clone on textarea
8+ // IE 9-11 BUG : Placeholder text becomes actual value after deep clone on textarea
99 // 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
1013 if ( window . document . documentMode ) {
1114 $clone . findInclusive ( ":input[placeholder]" ) . each ( function ( i , item ) {
1215 var $item = $ ( item ) ;
You can’t perform that action at this time.
0 commit comments