From 29ca030b2546dafb65209278881b1e1446093da0 Mon Sep 17 00:00:00 2001 From: Theodore Brown Date: Thu, 20 Jun 2013 20:20:53 -0500 Subject: [PATCH] Fixed several incorrectly encoded characters, escaped apostrophe in string --- jquery.pickadate/jquery.pickadate-tests.ts | 2 +- jquery.pickadate/jquery.pickadate.d.ts | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/jquery.pickadate/jquery.pickadate-tests.ts b/jquery.pickadate/jquery.pickadate-tests.ts index ca68d6e91..ac6a161c6 100644 --- a/jquery.pickadate/jquery.pickadate-tests.ts +++ b/jquery.pickadate/jquery.pickadate-tests.ts @@ -392,7 +392,7 @@ $('.datepicker').pickadate({ }); picker.on('open', function () { - console.log('Didn't open.. yet here I am!'); + console.log('Didn\'t open.. yet here I am!'); }) picker.trigger('open'); diff --git a/jquery.pickadate/jquery.pickadate.d.ts b/jquery.pickadate/jquery.pickadate.d.ts index 0de785108..d0825c770 100644 --- a/jquery.pickadate/jquery.pickadate.d.ts +++ b/jquery.pickadate/jquery.pickadate.d.ts @@ -262,10 +262,10 @@ interface DatePickerObject extends PickerObject { /** Returns the item object that sets the current view. */ get(thing: 'view'): DatePickerItemObject; - /** Returns the item object that limits the picker�s lower range. */ + /** Returns the item object that limits the picker's lower range. */ get(thing: 'min'): DatePickerItemObject; - /** Returns the item object that limits the picker�s upper range. */ + /** Returns the item object that limits the picker's upper range. */ get(thing: 'max'): DatePickerItemObject; /** Returns a boolean value of whether the picker is open or not. */ @@ -310,13 +310,13 @@ interface TimePickerObject extends PickerObject { /** Refresh the picker after adding something to the holder. */ render(): TimePickerObject; - /** Clear the value in the picker�s input element. */ + /** Clear the value in the picker's input element. */ clear(): TimePickerObject; /** Get the properties, objects, and states that make up the current state of the picker. */ get(thing: string): any; - /** Returns the string value of the picker�s input element. */ + /** Returns the string value of the picker's input element. */ get(thing?: 'value'): string; /** Returns the item object that is visually selected. */ @@ -328,10 +328,10 @@ interface TimePickerObject extends PickerObject { /** Returns the item object that sets the current view. */ get(thing: 'view'): TimePickerItemObject; - /** Returns the item object that limits the picker�s lower range. */ + /** Returns the item object that limits the picker's lower range. */ get(thing: 'min'): TimePickerItemObject; - /** Returns the item object that limits the picker�s upper range. */ + /** Returns the item object that limits the picker's upper range. */ get(thing: 'max'): TimePickerItemObject; /** Returns a boolean value of whether the picker is open or not. */