Peter Palotas
34d86d59e6
- Added documentation to ItemView.
...
- Added onXXX declarations and documentation to View and ItemView.
2014-12-28 20:28:40 +01:00
Peter Palotas
245a2440d7
- Added documentation for the Marionette.View class. Added some stronger typing to a couple of methods.
2014-12-28 20:17:14 +01:00
Peter Palotas
8c57d70d06
- Added documentation to Marionette.Renderer
2014-12-28 20:01:48 +01:00
Peter Palotas
988df7b7f4
- Added documentation to Marionette.TemplateCache. Added strong types for parameters and return types of this class.
2014-12-28 19:58:37 +01:00
Peter Palotas
c828657164
Added documentation to underscore mixins of RegionManager, and fixed some errors in the definitions there.
2014-12-28 19:51:07 +01:00
Peter Palotas
945a61bd21
- Added documentation to Marionette.RegionManager.
...
- Added constructor with options to Marionette.RegionManager.
- Added overloads to addRegions with more specific types.
- Specified type of parameter for RegionManager.removeRegion.
2014-12-28 19:32:20 +01:00
Bibby
dde5d1579f
modified xregexp.d.ts
...
=======================================================
// Matchception: Finding matches within matches, while passing forward and
// returning specific backreferences
html = '<a href="http://xregexp.com/api/ ">XRegExp</a>' +
'<a href="http://www.google.com/ ">Google</a>';
XRegExp.matchChain(html, [
{regex: /<a href="([^"]+)">/i, backref: 1},
{regex: XRegExp('(?i)^https?://(?<domain>[^/?#]+)'), backref: 'domain'}
]);
// -> ['xregexp.com', 'www.google.com']
2014-12-28 23:12:40 +08:00
Peter Palotas
b293be0d51
- Added Marionette.Object, introduced in Marionette version 2.1.0.
...
- Added JSdoc to Marionette.Controller
- Added getOption method to Marionette.Controller.
- Introduced interfaces for configuration options for Region construction and the Region.show() method.
- Added missing options parameter to Region.show() and Region.attachView()
- Removed method Region.ensureEl() since this does not seem to exist on the Marionette.Region class.
- Removed method Region.open() since this does not seem to exist on the Marionette.Region class.
- Added return-type specifications to methods, instead of relying on implicit any. (Most methods just return 'this').
- Merged a previous commit that removed superfluous generics from several classes that didn't need them.
2014-12-28 15:55:58 +01:00
Peter Palotas
481f28c9f3
Removed superfluous generics from class declarations.
...
The Application, Region, Module and RegionManager classes were all declared as generic with a Model as a type-argument. However, none of these classes store items of a single model and do not need to be generic. The views are really the only classes that needs generics, so moved the generic to the methods accepting views as arguments instead.
2014-12-28 13:38:05 +01:00
odangosan
260bc896aa
Add milkcocoa.d.ts and milkcocoa-tests.ts
2014-12-28 20:59:15 +09:00
Peter Palotas
33c1eb08b0
Updated marionette.js to comply with version 2.3.0. closeXXX() functions were renamed to destroyXXX() in version 2.0 of marionette, the same time that Layout was renamed to LayoutView which was already incorporated in these definitions.
2014-12-28 12:39:52 +01:00
Masahiro Wakame
a12472597c
Merge pull request #3381 from odangosan/vue
...
Add vue/vue.d.ts,vue/vue-tests.ts
2014-12-27 23:59:41 +09:00
Masahiro Wakame
a3da2029d5
Merge pull request #3382 from tomoyashibata/master
...
Fix class name
2014-12-27 23:58:25 +09:00
tomoyashibata
726859494a
Fix class name
...
"feed" in the case of an error occurs during instantiation. (Uncaught TypeError: undefined is not a function)
2014-12-27 23:49:14 +09:00
odangosan
0788f3939b
Update vue/vue.d.ts Header format
2014-12-27 21:24:43 +09:00
odangosan
017bd13729
Update vue/vue.d.ts
2014-12-27 21:19:02 +09:00
vvakame
8ba97a7c1f
update CONTRIBUTORS.md
2014-12-27 15:25:10 +09:00
Masahiro Wakame
f84f02149e
Merge pull request #3379 from hraban/patch-1
...
[touch-events] Index TouchList as array
2014-12-27 15:22:05 +09:00
Hraban Luyat
b2a9fc564e
[touch-events] Index TouchList as array
...
myTouchList[123] is allowed as an alias for myTouchList.item(123).
https://developer.mozilla.org/en-US/docs/Web/API/TouchList
and
http://www.w3.org/TR/touch-events/#idl-def-TouchList
2014-12-26 22:18:01 +01:00
Masahiro Wakame
0b6a5fb4e0
Merge pull request #3376 from alphaleonis/jquery.fancytree
...
Created type definitions for jquery.fancytree.
2014-12-27 00:35:58 +09:00
Masahiro Wakame
f96983263c
Merge pull request #3378 from horiuchi/asyncblock
...
bug fix: asyncblock
2014-12-27 00:34:56 +09:00
Masahiro Wakame
af4432fab8
Merge pull request #3364 from HenryOrrin/patch-1
...
Update hapi.d.ts
2014-12-27 00:34:28 +09:00
Masahiro Wakame
0da04f733c
Merge pull request #3373 from M-Zuber/tinycolor
...
Tinycolor typings
2014-12-27 00:34:02 +09:00
Masahiro Wakame
a8e45e394d
Merge pull request #3377 from mzsm/kuromojijs
...
Japanese morphological analyzer "kuromoji.js"
2014-12-26 23:27:17 +09:00
Horiuchi_H
195d5105cc
fix bug
2014-12-26 16:25:50 +09:00
mzsm
fe562facd3
update kuromoji.js
2014-12-26 16:06:25 +09:00
mzsm
f4007ed324
Add kuromoji.js
2014-12-26 16:06:00 +09:00
John Reilly
350a6abd9e
Merge pull request #3264 from ericrtodd/master
...
Adding typings for Bing Maps API. These are for use with the Bing Maps ...
2014-12-26 05:12:56 +00:00
John Reilly
6a3eced3d1
Merge pull request #3368 from icholy/jquery-target
...
add target property to BaseJQueryEventObject
2014-12-26 05:09:25 +00:00
Basarat Ali Syed
958500847d
Merge pull request #3374 from jbaldwin/master
...
Added underscore.d.ts 1.7.0 definitions.
2014-12-26 11:48:37 +11:00
jbaldwin
7a33b815e1
Added underscore.d.ts 1.7.0 definitions.
2014-12-25 17:23:58 -07:00
Victor Martinez
68a89b091e
Update hapi.d.ts
...
Made connection options optional.
2014-12-25 18:52:43 -04:00
Peter Palotas
99dc80385e
Created type definitions for jquery.fancytree.
2014-12-25 23:26:56 +01:00
mzsm
fb61e6dd47
add double array
2014-12-26 07:03:39 +09:00
Mordechai Zuber
1c7970ced8
Fix comments in spectrum typings -added reference to tinycolor
2014-12-25 18:51:15 +02:00
Mordechai Zuber
6483a9dc74
Add typings for tinycolor.js
2014-12-25 18:50:36 +02:00
Masahiro Wakame
c8f3fe2579
Merge pull request #3372 from nakakura/peer-rename
...
rename peerjs/Peer.d.ts
2014-12-25 23:59:34 +09:00
Toshiya Nakakura
c044850537
rename peerjs/Peer.d.ts
2014-12-25 23:33:05 +09:00
Masahiro Wakame
3279297291
Merge pull request #3370 from horiuchi/log4js
...
add a definition that was not enough: log4js
2014-12-25 22:52:18 +09:00
Horiuchi_H
06cae30d48
fix reference
2014-12-25 22:50:32 +09:00
Masahiro Wakame
88b958b2f3
Merge pull request #3363 from alphaleonis/Backbone.Radio
...
Created new type definition: Backbone.Radio
2014-12-25 22:33:36 +09:00
Peter Palotas
1d9ca5e3be
Renamed backbone-radio folder to backbone.radio
2014-12-25 14:30:22 +01:00
vvakame
3e41ca662c
update CONTRIBUTORS.md
2014-12-25 22:29:29 +09:00
Masahiro Wakame
041de25bd5
Merge pull request #3360 from rogierschouten/fast-stats
...
Add typings for fast-stats.
2014-12-25 22:28:32 +09:00
Masahiro Wakame
3ccc5fb242
Merge pull request #3371 from nakakura/peerjs-update
...
update peerjs/Peer.d.ts
2014-12-25 22:26:20 +09:00
Masahiro Wakame
bcdddb1d00
Merge pull request #3369 from shiwano/swag
...
Add swag
2014-12-25 22:22:31 +09:00
Masahiro Wakame
f7eee43319
Merge pull request #3317 from noobiept/update_createjs
...
Update createjs libraries to most recent version
2014-12-25 22:21:36 +09:00
Masahiro Wakame
2b35302f1c
Merge pull request #3366 from lbesson/master
...
add createMediaStreamDestination
2014-12-25 22:18:29 +09:00
Masahiro Wakame
378e603ea2
Merge pull request #3365 from horiuchi/asyncblock
...
add asyncblock type definition files
2014-12-25 22:13:32 +09:00
Masahiro Wakame
0cf17c33bf
Merge pull request #3361 from jt000/master
...
Adding basic support for ejs-locals and express-partials
2014-12-25 22:08:37 +09:00