Juan Tamayo
366bad1e4d
Add missing 'get' from Selection.datum
2013-10-15 19:48:49 -07:00
basarat
59af5c0879
Merge pull request #1142 from TiddoLangerak/patch-1
...
Added support for the CommonJS require call
2013-10-15 01:17:18 -07:00
basarat
429a57e745
Merge pull request #1141 from theodorejb/master
...
Updated jquery.pickadate to support v3.3.0 of the library
2013-10-15 01:13:54 -07:00
Tiddo Langerak
a14182b018
Added support for the CommonJS require call
2013-10-15 07:37:49 +02:00
Theodore Brown
b786b9a83b
Updated jquery.pickadate to support v3.3.0
2013-10-14 23:10:17 -05:00
basarat
fa9a7b7a83
Merge pull request #1122 from seanhess/q
...
Q: support nested promises
2013-10-14 17:03:39 -07:00
basarat
114787a47c
Merge pull request #1137 from TiddoLangerak/patch-1
...
Requirejs should also accepts an array for path values.
2013-10-14 16:59:52 -07:00
Boris Yankov
555694934f
Merge pull request #1140 from vincenthome/patch-1
...
Update durandal.d.ts
2013-10-14 16:50:42 -07:00
vincenthome
de3c44456b
Update durandal.d.ts
...
missing the result* parameter
2013-10-14 14:50:15 -04:00
Tiddo Langerak
0df63c1ab3
Requirejs should also accepts an array for path values.
...
According to https://github.com/jrburke/requirejs/wiki/Upgrading-to-RequireJS-2.0#wiki-pathsfallbacks requirejs also accepts arrays as path values. Therefore, the type of path values is changed from string to any.
2013-10-14 14:46:58 +02:00
Boris Yankov
9f71db2f1c
Merge pull request #1134 from darthapo/master
...
Added definitions for Giraffe (Backbone).
2013-10-13 22:34:20 -07:00
basarat
4ad5ddbdd9
Merge pull request #1135 from derekcicerone/patch-23
...
Fix the typing of L.Icon.Default
2013-10-13 19:47:06 -07:00
Derek Cicerone
b03290184e
Fix the typing of L.Icon.Default
...
This wasn't quite right and the 'develop' branch of the TypeScript compiler no longer accepted the hacky typing. This should be the correct typing according to information from the TS team here:
https://typescript.codeplex.com/workitem/132
2013-10-13 15:11:26 -04:00
M@ McCray
01439dea04
Updated Giraffe.View.setTemplateStrategy().
2013-10-12 22:14:27 -05:00
M@ McCray
0f3f9615d1
Added Contrib module.
2013-10-12 19:53:49 -05:00
M@ McCray
a7dc33cf25
Typo fix.
2013-10-12 17:02:23 -05:00
M@ McCray
e8e5de4c0b
Added definitions for Giraffe (Backbone).
2013-10-12 16:42:19 -05:00
Boris Yankov
230ddb3505
Merge pull request #1133 from airamrguez/master
...
Added TypeScript's typings for Titanium Mobile
2013-10-12 11:19:51 -07:00
airamrguez
08393ae71d
Added TypeScript's typings for Titanium Mobile
2013-10-12 16:08:42 +02:00
basarat
983105b2f1
Merge pull request #1111 from ashwinr/master
...
Update bind method for underscore.d.ts
2013-10-11 23:02:08 -07:00
basarat
fa4af6a731
Merge pull request #1127 from rsmithh/patch-3
...
Update chrome.d.ts
2013-10-11 23:01:26 -07:00
Boris Yankov
94792ba2f6
Merge pull request #1113 from csrakowski/PhonegapNotification
...
(Phonegap) Notification.confirm with buttonLabels array
2013-10-11 21:06:11 -07:00
Boris Yankov
24b81548bd
Merge pull request #1131 from derekcicerone/patch-21
...
Fix future bugs in slickgrid.d.ts
2013-10-11 21:05:35 -07:00
Boris Yankov
f90c0763c6
Merge pull request #1130 from derekcicerone/patch-20
...
Fix future bugs in moment.d.ts
2013-10-11 21:05:24 -07:00
Boris Yankov
f2f6a95b4b
Merge pull request #1129 from derekcicerone/patch-19
...
Fix future bugs in leaflet.d.ts
2013-10-11 21:04:53 -07:00
Boris Yankov
063531ba5c
Merge pull request #1132 from derekcicerone/patch-22
...
Fix optional argument in slickgrid.d.ts
2013-10-11 21:04:17 -07:00
Boris Yankov
bef0f87e63
Merge pull request #1128 from derekcicerone/patch-18
...
Fix jquery.d.ts break with TypeScript 'develop' branch
2013-10-11 21:03:44 -07:00
Derek Cicerone
cdbcec0205
Fix optional argument in slickgrid.d.ts
...
From looking at the code, this argument appears to be optional. Also, we are omitting it in our code and it works.
2013-10-11 21:46:59 -04:00
Derek Cicerone
65000321ad
Fix future bugs in slickgrid.d.ts
...
The 'develop' version of the TypeScript compiler is pickier about generics being fully specified. I believe these are the proper missing types.
2013-10-11 21:02:37 -04:00
Derek Cicerone
690b190b09
Fix future bugs in moment.d.ts
...
The 'develop' version of the TypeScript compiler requires all generics to be fully specified. I believe these arrays should all be numbers: http://momentjs.com/docs/#/parsing/array/
2013-10-11 20:49:44 -04:00
Derek Cicerone
5b00360b17
Fix future bugs in leaflet.d.ts
...
The 'develop' TypeScript compiler is pickier about generics being fully specified. In this case, 3 arrays could be more specific about the type of elements.
2013-10-11 20:40:00 -04:00
Derek Cicerone
d3124df1d4
Fix jquery.d.ts break with TypeScript 'develop' branch
...
The beta compiler is smarter about detecting inconsistencies:
jquery.d.ts(192,11): error TS2189: Interface 'JQueryEventObject' cannot simultaneously extend types 'BaseJQueryEventObject' and 'JQueryInputEventObject':
Types of property 'metaKey' of types 'BaseJQueryEventObject' and 'JQueryInputEventObject' are not identical.
Documentation seems to indicate 'boolean' is correct: http://api.jquery.com/event.metaKey/
2013-10-11 20:23:28 -04:00
rsmithh
e0a2f1b03c
Update chrome.d.ts
2013-10-11 19:35:09 +01:00
basarat
bd8fc348a4
Merge pull request #1125 from rsmithh/patch-1
...
Added chrome.identity.getAuthToken
2013-10-11 03:25:24 -07:00
rsmithh
6b1d7dfc65
Added chrome.identity.getAuthToken
2013-10-11 10:37:44 +01:00
basarat
02cf900812
Merge pull request #1119 from tomkuijsten/master
...
Added generic overload method declarations for the ko.utils.arrayX funct...
2013-10-10 18:53:21 -07:00
basarat
4ced5f7abb
Merge pull request #1116 from rsmithh/patch-1
...
Update chrome.d.ts
2013-10-10 18:50:04 -07:00
Sean Clark Hess
e97c31c8fd
Q: reversed the order of function overrides to put promises first for nested promises
2013-10-10 15:37:18 -06:00
Boris Yankov
6e7284fd52
Merge pull request #1121 from johnnyreilly/master
...
jQuery Validation: added missing errorList / errorMap properties and valid / size / hideErrors functions
2013-10-10 10:33:28 -07:00
John Reilly
6b8d398be9
Added errorList / errorMap properties and valid / size / hideErrors functions with associated tests
2013-10-10 17:02:39 +01:00
Tom Kuijsten
b8829669a7
Added generic overload method declarations for the ko.utils.arrayX functions
2013-10-09 13:43:24 +02:00
rsmithh
0fb291f31f
Update chrome.d.ts
...
Fix argument to BookmarkRemovedEvent
2013-10-08 17:13:21 +01:00
Diullei Gomes
52952e923b
Merge pull request #1112 from flurg/master
...
New definition file and tests for mCustomScrollbar
2013-10-05 18:27:20 -07:00
Diullei Gomes
4afd742b79
Merge pull request #1099 from BMeyerKC/Knockout.Mapper
...
Knockout.Mapper Basic Definitions
2013-10-05 18:23:41 -07:00
Diullei Gomes
2597c4a3c2
Merge pull request #1098 from AdamLay/master
...
Added Chrome App Definitions + Tests
2013-10-05 18:19:43 -07:00
Diullei Gomes
c0c9838628
Merge pull request #1091 from derekcicerone/patch-11
...
Create cometd.d.ts
2013-10-05 18:17:33 -07:00
basarat
7c4c03b5da
Merge pull request #1115 from dimchansky/google-maps-fix
...
fixed getTileUrl method signature of ImageMapTypeOptions interface
2013-10-05 09:11:35 -07:00
Christiaan Rakowski
2374fc4589
changed Array<string> to string[], and added test
2013-10-05 17:55:17 +02:00
Dmitrij Koniajev
f66d407c43
fixed getTileUrl method signature of ImageMapTypeOptions interface
2013-10-05 18:25:36 +03:00
Sarah
0e80e00f0f
Changed project URL to github project
2013-10-04 10:27:04 +01:00