fix nvnc, zeromq, icheck and unity-webapi definitions

This commit is contained in:
Neil Stalker
2013-06-24 19:20:59 +01:00
parent d4c6dd3d45
commit d4e621d9ad
6 changed files with 41 additions and 8 deletions
+34
View File
@@ -0,0 +1,34 @@
///<reference path="icheck.d.ts" />
///<reference path="../jquery/jquery.d.ts" />
$('input').iCheck({
labelHover: false,
cursor: true
});
// customize all inputs (will search for checkboxes and radio buttons)
$('input').iCheck();
// handle inputs only inside $('.block')
$('.block input').iCheck();
// handle only checkboxes inside $('.test')
$('.test input').iCheck({
handle: 'checkbox'
});
// handle .vote class elements (will search inside the element, if it's not an input)
$('.vote').iCheck();
// you can also change options after inputs are customized
$('input.some').iCheck({
// different options
});
$('input').on('ifChecked', function (event) {
alert(event.type + ' callback');
});
$('input').iCheck('check', function () {
alert('Well done, Sir');
});
+3 -3
View File
@@ -3,7 +3,7 @@
// Definitions by: Dániel Tar https://github.com/qcz
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare interface ICheckOptions {
interface ICheckOptions {
/**
* 'checkbox' or 'radio' to style only checkboxes or radio buttons, both by default
*/
@@ -106,7 +106,7 @@ declare interface ICheckOptions {
insert?: string;
}
declare interface JQuery {
interface JQuery {
iCheck(options?: ICheckOptions): JQuery;
iCheck(command: string): void;
iCheck(command: string, callback?: () => void): void;
}
+1 -1
View File
@@ -87,7 +87,7 @@ interface NvRFBDefaults {
onFBResize?: (rfb: RFB, width: number, height: number) => void;
}
class RFB {
declare class RFB {
constructor(defaults);
set_local_cursor(cursor): void;
get_display(): Display;
+1 -2
View File
@@ -1,7 +1,6 @@
/// <reference path='zmq.d.ts' />
import zeromq = module('zmq');
var zmq: zeromq;
import zmq = module('zmq');
function test1() {
var sock = zmq.socket('push');
+1 -1
View File
@@ -3,7 +3,7 @@
// Definitions by: Dave McKeown <http://github.com/davemckeown>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare interface EventEmitter {};
interface EventEmitter {}
declare module 'zmq' {
+1 -1
View File
@@ -9,7 +9,7 @@ declare class UnitySettings {
public onInit:Function;
}
enum UnityPlaybackState {
declare enum UnityPlaybackState {
Playing,
Paused
}