-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Datepicker: Make sure text option are text, shorten HTML strings #1953
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -240,7 +240,9 @@ $.extend( Datepicker.prototype, { | |
inst.append.remove(); | ||
} | ||
if ( appendText ) { | ||
inst.append = $( "<span class='" + this._appendClass + "'>" + appendText + "</span>" ); | ||
inst.append = $( "<span></span>" ) | ||
.attr( "class", this._appendClass ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not using |
||
.text( appendText ); | ||
input[ isRTL ? "before" : "after" ]( inst.append ); | ||
} | ||
|
||
|
@@ -257,12 +259,32 @@ $.extend( Datepicker.prototype, { | |
if ( showOn === "button" || showOn === "both" ) { // pop-up date picker when button clicked | ||
buttonText = this._get( inst, "buttonText" ); | ||
buttonImage = this._get( inst, "buttonImage" ); | ||
inst.trigger = $( this._get( inst, "buttonImageOnly" ) ? | ||
$( "<img/>" ).addClass( this._triggerClass ). | ||
attr( { src: buttonImage, alt: buttonText, title: buttonText } ) : | ||
$( "<button type='button'></button>" ).addClass( this._triggerClass ). | ||
html( !buttonImage ? buttonText : $( "<img/>" ).attr( | ||
{ src:buttonImage, alt:buttonText, title:buttonText } ) ) ); | ||
|
||
if ( this._get( inst, "buttonImageOnly" ) ) { | ||
inst.trigger = $( "<img/>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove slash for closing as not needed. |
||
.addClass( this._triggerClass ) | ||
.attr( { | ||
src: buttonImage, | ||
alt: buttonText, | ||
title: buttonText | ||
} ); | ||
} else { | ||
inst.trigger = $( "<button type='button'></button>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Closing tag not needed. |
||
.addClass( this._triggerClass ); | ||
if ( buttonImage ) { | ||
inst.trigger.html( | ||
$( "<img/>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See comment above. |
||
.attr( { | ||
src: buttonImage, | ||
alt: buttonText, | ||
title: buttonText | ||
} ) | ||
); | ||
} else { | ||
inst.trigger.text( buttonText ); | ||
} | ||
} | ||
|
||
input[ isRTL ? "before" : "after" ]( inst.trigger ); | ||
inst.trigger.on( "click", function() { | ||
if ( $.datepicker._datepickerShowing && $.datepicker._lastInput === input[ 0 ] ) { | ||
|
@@ -1703,32 +1725,104 @@ $.extend( Datepicker.prototype, { | |
this._daylightSavingAdjust( new Date( drawYear, drawMonth - stepMonths, 1 ) ), | ||
this._getFormatConfig( inst ) ) ); | ||
|
||
prev = ( this._canAdjustMonth( inst, -1, drawYear, drawMonth ) ? | ||
"<a class='ui-datepicker-prev ui-corner-all' data-handler='prev' data-event='click'" + | ||
" title='" + prevText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w" ) + "'>" + prevText + "</span></a>" : | ||
( hideIfNoPrevNext ? "" : "<a class='ui-datepicker-prev ui-corner-all ui-state-disabled' title='" + prevText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w" ) + "'>" + prevText + "</span></a>" ) ); | ||
if ( this._canAdjustMonth( inst, -1, drawYear, drawMonth ) ) { | ||
prev = $( "<a></a>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The string I used is natively compliant with both HTML & XHTML, although for the single tag case it doesn't matter much as jQuery uses a shortcut that just does There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @fnagel Although it's safe to do a single unclosed tag, an unclosed tag with attributes or several unclosed tags in a string can be an issue. It's been hard to explain these subtle differences to people so closing tags is a good practice. I guess another option would be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dmethvin Sadly, the linked news does not provide a recommendation what is the best practice. Looks like best thing to do is using closed tags, right? I would suggest to keep this consistent with all other widgets (using single, unclosed tags if no attributes are used) and then do a PR changing this to single closed tags.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code deciding on whether to use the shortcut or not is here: I'm fine with making the change here as advised and modifying all single tags separately in a subsequent PR. |
||
.attr( { | ||
"class": "ui-datepicker-prev ui-corner-all", | ||
"data-handler": "prev", | ||
"data-event": "click", | ||
title: prevText | ||
} ) | ||
.append( | ||
$( "<span>" ) | ||
.attr( "class", "ui-icon ui-icon-circle-triangle-" + | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not using |
||
( isRTL ? "e" : "w" ) ) | ||
.text( prevText ) | ||
)[ 0 ].outerHTML; | ||
} else if ( hideIfNoPrevNext ) { | ||
prev = ""; | ||
} else { | ||
prev = $( "<a></a>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See comment above. |
||
.attr( { | ||
"class": "ui-datepicker-prev ui-corner-all ui-state-disabled", | ||
title: prevText | ||
} ) | ||
.append( | ||
$( "<span>" ) | ||
.attr( "class", "ui-icon ui-icon-circle-triangle-" + | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not using |
||
( isRTL ? "e" : "w" ) ) | ||
.text( prevText ) | ||
)[ 0 ].outerHTML; | ||
} | ||
|
||
nextText = this._get( inst, "nextText" ); | ||
nextText = ( !navigationAsDateFormat ? nextText : this.formatDate( nextText, | ||
this._daylightSavingAdjust( new Date( drawYear, drawMonth + stepMonths, 1 ) ), | ||
this._getFormatConfig( inst ) ) ); | ||
|
||
next = ( this._canAdjustMonth( inst, +1, drawYear, drawMonth ) ? | ||
"<a class='ui-datepicker-next ui-corner-all' data-handler='next' data-event='click'" + | ||
" title='" + nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e" ) + "'>" + nextText + "</span></a>" : | ||
( hideIfNoPrevNext ? "" : "<a class='ui-datepicker-next ui-corner-all ui-state-disabled' title='" + nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e" ) + "'>" + nextText + "</span></a>" ) ); | ||
if ( this._canAdjustMonth( inst, +1, drawYear, drawMonth ) ) { | ||
next = $( "<a></a>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See comment above. |
||
.attr( { | ||
"class": "ui-datepicker-next ui-corner-all", | ||
"data-handler": "next", | ||
"data-event": "click", | ||
title: nextText | ||
} ) | ||
.append( | ||
$( "<span>" ) | ||
.attr( "class", "ui-icon ui-icon-circle-triangle-" + | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not using |
||
( isRTL ? "w" : "e" ) ) | ||
.text( nextText ) | ||
)[ 0 ].outerHTML; | ||
} else if ( hideIfNoPrevNext ) { | ||
next = ""; | ||
} else { | ||
next = $( "<a></a>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See comment above. |
||
.attr( { | ||
"class": "ui-datepicker-next ui-corner-all ui-state-disabled", | ||
title: nextText | ||
} ) | ||
.append( | ||
$( "<span>" ) | ||
.attr( "class", "ui-icon ui-icon-circle-triangle-" + | ||
( isRTL ? "w" : "e" ) ) | ||
.text( nextText ) | ||
)[ 0 ].outerHTML; | ||
} | ||
|
||
currentText = this._get( inst, "currentText" ); | ||
gotoDate = ( this._get( inst, "gotoCurrent" ) && inst.currentDay ? currentDate : today ); | ||
currentText = ( !navigationAsDateFormat ? currentText : | ||
this.formatDate( currentText, gotoDate, this._getFormatConfig( inst ) ) ); | ||
|
||
controls = ( !inst.inline ? "<button type='button' class='ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all' data-handler='hide' data-event='click'>" + | ||
this._get( inst, "closeText" ) + "</button>" : "" ); | ||
|
||
buttonPanel = ( showButtonPanel ) ? "<div class='ui-datepicker-buttonpane ui-widget-content'>" + ( isRTL ? controls : "" ) + | ||
( this._isInRange( inst, gotoDate ) ? "<button type='button' class='ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all' data-handler='today' data-event='click'" + | ||
">" + currentText + "</button>" : "" ) + ( isRTL ? "" : controls ) + "</div>" : ""; | ||
controls = ""; | ||
if ( !inst.inline ) { | ||
controls = $( "<button></button>" ) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here: is there a reason you added the closing tag? |
||
.attr( { | ||
type: "button", | ||
"class": "ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all", | ||
"data-handler": "hide", | ||
"data-event": "click" | ||
} ) | ||
.text( this._get( inst, "closeText" ) )[ 0 ].outerHTML; | ||
} | ||
|
||
buttonPanel = ""; | ||
if ( showButtonPanel ) { | ||
buttonPanel = $( "<div class='ui-datepicker-buttonpane ui-widget-content'>" ) | ||
.append( isRTL ? controls : "" ) | ||
.append( this._isInRange( inst, gotoDate ) ? | ||
$( "<button></button>" ) | ||
.attr( { | ||
type: "button", | ||
"class": "ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all", | ||
"data-handler": "today", | ||
"data-event": "click" | ||
} ) | ||
.text( currentText ) : | ||
"" ) | ||
.append( isRTL ? "" : controls )[ 0 ].outerHTML; | ||
} | ||
|
||
firstDay = parseInt( this._get( inst, "firstDay" ), 10 ); | ||
firstDay = ( isNaN( firstDay ) ? 0 : firstDay ); | ||
|
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.
Closing tag is not needed here.