Removed JQuery reference

This commit is contained in:
Howard Richards 2017-08-30 11:51:47 +01:00
parent b72f3df709
commit aba9fe6b33
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,6 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
/// <reference types="jquery" />
/// <reference types="knockout" />
/**
@ -23,6 +22,7 @@
* status and message values
*
* Version 1.3 - added module declaration so it be used with node, requirejs etc.
* removed jquery reference as it is not required
*
*/

View File

@ -1,3 +1,4 @@
function CommandTests() {
// initalize command with an execute method
var cmd1 = ko.command(() => {
@ -122,10 +123,10 @@ function SortableTests() {
}
function BindingHandlerTests() {
// test binding handlers
var bh1 = ko.bindingHandlers.command;
var bh2 = ko.bindingHandlers.loadingWhen;
var bh3 = ko.bindingHandlers.sortBy;
}