mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Merge pull request #4330 from Seltzer/qtip2
Bugfixes to qtip2 bindings and minor fix to contributor info
This commit is contained in:
+1
-1
@@ -726,7 +726,7 @@ This document generated by [dt-contributors-generator](https://github.com/vvakam
|
||||
* [:link:](q-io/Q-io.d.ts) [Q-io](https://github.com/kriskowal/q-io) by [Bart van der Schoor](https://github.com/Bartvds)
|
||||
* [:link:](q-retry/q-retry.d.ts) [q-retry](https://github.com/vilic/q-retry) by [VILIC VANE](https://github.com/vilic)
|
||||
* [:link:](qajax/qajax.d.ts) [Qajax](https://github.com/gre/qajax) by [Boltmade](https://github.com/Boltmade)
|
||||
* [:link:](qtip2/qtip2.d.ts) [qtip2](http://qtip2.com) by [Nathan Pitman](https://github.com/Seltzer100)
|
||||
* [:link:](qtip2/qtip2.d.ts) [qtip2](http://qtip2.com) by [Nathan Pitman](https://github.com/Seltzer)
|
||||
* [:link:](qunit/qunit.d.ts) [QUnit](http://qunitjs.com) by [Diullei Gomes](https://github.com/diullei)
|
||||
* [:link:](rabbit.js/rabbit.js.d.ts) [rabbit.js](https://github.com/squaremo/rabbit.js) by [Wonshik Kim](https://github.com/wokim)
|
||||
* [:link:](ractive/ractive.d.ts) [Ractive](http://ractivejs.org) by [Han Lin Yap](http://yap.nu)
|
||||
|
||||
@@ -398,7 +398,7 @@ function testStyleProperty() {
|
||||
});
|
||||
|
||||
$a.qtip({
|
||||
show: {
|
||||
style: {
|
||||
classes: false,
|
||||
width: 24,
|
||||
height: 24,
|
||||
@@ -407,7 +407,7 @@ function testStyleProperty() {
|
||||
});
|
||||
|
||||
$a.qtip({
|
||||
show: {
|
||||
style: {
|
||||
classes: false,
|
||||
width: false,
|
||||
height: false,
|
||||
@@ -423,7 +423,7 @@ function testStyleProperty() {
|
||||
});
|
||||
|
||||
$a.qtip({
|
||||
show: {
|
||||
style: {
|
||||
tip: {
|
||||
corner: true,
|
||||
mimic: true,
|
||||
@@ -433,7 +433,7 @@ function testStyleProperty() {
|
||||
});
|
||||
|
||||
$a.qtip({
|
||||
show: {
|
||||
style: {
|
||||
tip: { }
|
||||
}
|
||||
});
|
||||
|
||||
Vendored
+3
-3
@@ -1,6 +1,6 @@
|
||||
// Type definitions for qtip2 v2.2.1
|
||||
// Project: http://qtip2.com/
|
||||
// Definitions by: Nathan Pitman <https://github.com/Seltzer100/>
|
||||
// Definitions by: Nathan Pitman <https://github.com/Seltzer>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
// Notes:
|
||||
// - Type bindings for the QTip2 API and options are included. Bindings for global settings aren't required.
|
||||
@@ -98,8 +98,8 @@ declare module QTip2 {
|
||||
classes?: string | boolean;
|
||||
def?: boolean;
|
||||
widget?: boolean;
|
||||
width: string | number | boolean;
|
||||
height: string | number | boolean;
|
||||
width?: string | number | boolean;
|
||||
height?: string | number | boolean;
|
||||
tip?: string | boolean | Tip;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user