Skip to content

Commit dea4512

Browse files
committed
Merge branch 'issue-11' into devel
2 parents 2ba7a08 + 5a67f51 commit dea4512

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Copyright (c) 2014 Tamble, Inc
2+
Copyright (c) 2015 Tamble, Inc
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ To get started, checkout examples and API at http://tamble.github.io/jquery-ui-d
1414

1515
## Copyright and License
1616

17-
Copyright (c) 2014 Tamble, Inc.
17+
Copyright (c) 2015 Tamble, Inc.
1818
Released under [the MIT license](LICENSE.txt)

jquery.comiseo.daterangepicker.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* jQuery UI date range picker widget
3-
* Copyright (c) 2014 Tamble, Inc.
3+
* Copyright (c) 2015 Tamble, Inc.
44
* Licensed under MIT (https://github.com/tamble/jquery-ui-daterangepicker/raw/master/LICENSE.txt)
55
*
66
* Depends:
@@ -14,7 +14,7 @@
1414
var uniqueId = 0; // used for unique ID generation within multiple plugin instances
1515

1616
$.widget('comiseo.daterangepicker', {
17-
version: '0.3.4',
17+
version: '0.3.5',
1818

1919
options: {
2020
// presetRanges: array of objects; each object describes an item in the presets menu
@@ -202,8 +202,8 @@
202202
} else {
203203
range.end = selectedDate;
204204
}
205-
if (options.datepickerOptions.hasOwnProperty('onSelectDay')) {
206-
options.datepickerOptions.onSelectDay(dateText, instance);
205+
if (options.datepickerOptions.hasOwnProperty('onSelect')) {
206+
options.datepickerOptions.onSelect(dateText, instance);
207207
}
208208
}
209209

0 commit comments

Comments
 (0)