mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Update readme and references
This commit is contained in:
parent
209d95071a
commit
4524a82d45
@ -54,13 +54,16 @@ List of Libraries
|
||||
* [jQuery Mobile](http://jquerymobile.com) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
* [jQuery UI](http://jqueryui.com/) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
* [jQuery.BBQ](http://benalman.com/projects/jquery-bbq-plugin/) (by [Adam R. Smith](https://github.com/sunetos))
|
||||
* [jQuery.contextMenu](http://medialize.github.com/jQuery-contextMenu/) (by [Natan Vivo](https://github.com/nvivo/))
|
||||
* [jQuery.Cookie](https://github.com/carhartl/jquery-cookie) (by [Roy Goode](https://github.com/RoyGoode))
|
||||
* [jQuery.Globalize](https://github.com/jquery/globalize) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
* [jQuery.jNotify]( http://jnotify.codeplex.com) (by [James Curran](https://github.com/jamescurran/))
|
||||
* [jQuery.simplePagination](https://github.com/flaviusmatis/simplePagination.js) (by [Natan Vivo](https://github.com/nvivo/))
|
||||
* [jQuery.Timepicker](http://fgelinas.com/code/timepicker/) (by [Anwar Javed](https://github.com/anwarjaved))
|
||||
* [jQuery.Transit](http://ricostacruz.com/jquery.transit/) (by [MrBigDog2U](https://github.com/MrBigDog2U))
|
||||
* [jQuery.Validation](http://bassistance.de/jquery-plugins/jquery-plugin-validation/) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
* [jQuery.Watermark](http://jquery-watermark.googlecode.com) (by [Anwar Javed](https://github.com/anwarjaved))
|
||||
* [KeyboardJS](https://github.com/RobertWHurst/KeyboardJS) (by [Vincent Bortone](https://github.com/vbortone/))
|
||||
* [Knockback](http://kmalakoff.github.com/knockback/) (by [Marcel Binot](https://github.com/docgit))
|
||||
* [Knockout.js](http://knockoutjs.com/) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
* [Knockout.Mapping](https://github.com/SteveSanderson/knockout.mapping) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
|
||||
66
jquery.contextMenu/jquery.contextMenu.d.ts
vendored
66
jquery.contextMenu/jquery.contextMenu.d.ts
vendored
@ -1,33 +1,33 @@
|
||||
// Type definitions for jQuery contextMenu 1.5.25
|
||||
// Project: http://medialize.github.com/jQuery-contextMenu/
|
||||
// Definitions by: Natan Vivo <https://github.com/nvivo/>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../jquery/jquery-1.9.d.ts" />
|
||||
|
||||
interface JQueryContextMenuOptions {
|
||||
selector: string;
|
||||
appendTo?: string;
|
||||
trigger?: string;
|
||||
autoHide?: bool;
|
||||
delay?: number;
|
||||
determinePosition?: (menu) => void;
|
||||
position?: (opt, x, y) => void;
|
||||
positionSubmenu?: (menu) => void;
|
||||
zIndex?: number;
|
||||
animation?: {
|
||||
duration?: number;
|
||||
show?: string;
|
||||
hide?: string;
|
||||
};
|
||||
events?: {
|
||||
show?: () => void;
|
||||
hide?: () => void;
|
||||
};
|
||||
callback?: (...args: any[]) => any;
|
||||
items: any;
|
||||
};
|
||||
|
||||
interface JQueryStatic {
|
||||
contextMenu(options?: JQueryContextMenuOptions): JQuery;
|
||||
}
|
||||
// Type definitions for jQuery contextMenu 1.5.25
|
||||
// Project: http://medialize.github.com/jQuery-contextMenu/
|
||||
// Definitions by: Natan Vivo <https://github.com/nvivo/>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../jquery/jquery.d.ts" />
|
||||
|
||||
interface JQueryContextMenuOptions {
|
||||
selector: string;
|
||||
appendTo?: string;
|
||||
trigger?: string;
|
||||
autoHide?: bool;
|
||||
delay?: number;
|
||||
determinePosition?: (menu) => void;
|
||||
position?: (opt, x, y) => void;
|
||||
positionSubmenu?: (menu) => void;
|
||||
zIndex?: number;
|
||||
animation?: {
|
||||
duration?: number;
|
||||
show?: string;
|
||||
hide?: string;
|
||||
};
|
||||
events?: {
|
||||
show?: () => void;
|
||||
hide?: () => void;
|
||||
};
|
||||
callback?: (...args: any[]) => any;
|
||||
items: any;
|
||||
};
|
||||
|
||||
interface JQueryStatic {
|
||||
contextMenu(options?: JQueryContextMenuOptions): JQuery;
|
||||
}
|
||||
|
||||
@ -1,27 +1,27 @@
|
||||
// Type definitions for jQuery simplePagination.js v1.4
|
||||
// Project: https://github.com/flaviusmatis/simplePagination.js
|
||||
// Definitions by: Natan Vivo <https://github.com/nvivo/>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../jquery/jquery-1.9.d.ts" />
|
||||
|
||||
interface SimplePaginationOptions {
|
||||
items?: number;
|
||||
itemsOnPage?: number;
|
||||
pages?: number;
|
||||
displayedPages?: number;
|
||||
edges?: number;
|
||||
currentPage?: number;
|
||||
hrefTextPrefix?: string;
|
||||
hrefTextSuffix?: string;
|
||||
prevText?: string;
|
||||
nextText?: string;
|
||||
cssStyle?: string;
|
||||
selectOnClick?: bool;
|
||||
onPageClick?: (interger) => void;
|
||||
onInit?: () => void;
|
||||
};
|
||||
|
||||
interface JQuery {
|
||||
pagination(options?: SimplePaginationOptions): JQuery;
|
||||
}
|
||||
// Type definitions for jQuery simplePagination.js v1.4
|
||||
// Project: https://github.com/flaviusmatis/simplePagination.js
|
||||
// Definitions by: Natan Vivo <https://github.com/nvivo/>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../jquery/jquery.d.ts" />
|
||||
|
||||
interface SimplePaginationOptions {
|
||||
items?: number;
|
||||
itemsOnPage?: number;
|
||||
pages?: number;
|
||||
displayedPages?: number;
|
||||
edges?: number;
|
||||
currentPage?: number;
|
||||
hrefTextPrefix?: string;
|
||||
hrefTextSuffix?: string;
|
||||
prevText?: string;
|
||||
nextText?: string;
|
||||
cssStyle?: string;
|
||||
selectOnClick?: bool;
|
||||
onPageClick?: (interger) => void;
|
||||
onInit?: () => void;
|
||||
};
|
||||
|
||||
interface JQuery {
|
||||
pagination(options?: SimplePaginationOptions): JQuery;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user