Skip to content

Commit 50447d2

Browse files
fnagelscottgonzalez
authored andcommitted
Datepicker: Fix code style issues
1 parent 8a115dc commit 50447d2

File tree

8 files changed

+854
-811
lines changed

8 files changed

+854
-811
lines changed

demos/datepicker/show-week.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<div class="demo-description">
3030
<p>The datepicker can show the week of the year. The calculation follows
31-
<a href="http://www.unicode.org/reports/tr35 /tr35-dates.html#Date_Field_Symbol_Table">Unicode CLDR specification</a>.
31+
<a href="http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table">Unicode CLDR specification</a>.
3232
This means that some days from one year may be placed into weeks 'belonging' to another year.</p>
3333
</div>
3434
</body>

external/date.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ $.date.prototype = {
126126
var day = ( dow + weekdaysRev[ Globalize.locale().supplemental.weekData.firstDay() ] ) % 7;
127127
result.push({
128128
shortname: Globalize.locale().main([ "dates/calendars/gregorian/days/format/abbreviated", weekdays[ day ] ]),
129-
fullname: Globalize.locale().main([ "dates/calendars/gregorian/days/format/wide", weekdays[ day ] ]),
129+
fullname: Globalize.locale().main([ "dates/calendars/gregorian/days/format/wide", weekdays[ day ] ])
130130
});
131131
}
132132
return result;

0 commit comments

Comments
 (0)