2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-11-12 16:26:37 +00:00

Change formatting to make JSLint happy.

This commit is contained in:
Tomas Kirda 2013-01-20 14:09:09 -06:00
parent d93af49a5e
commit b6482b8a89

View File

@ -1,5 +1,5 @@
/*jslint vars: true*/
/*global describe, it, expect, waitsFor, runs, afterEach, $*/
/*global describe, it, expect, waitsFor, runs, afterEach, spyOn, $*/
describe('Autocomplete', function () {
'use strict';
@ -142,7 +142,8 @@ describe('Autocomplete', function () {
var input = document.createElement('input'),
autocomplete = new $.Autocomplete(input, {
lookup: [{ value: 'Jamaica', data: 'B' }],
tabDisabled: false});
tabDisabled: false
});
input.value = 'Jam';
autocomplete.onValueChange();
@ -167,7 +168,8 @@ describe('Autocomplete', function () {
var input = document.createElement('input'),
autocomplete = new $.Autocomplete(input, {
lookup: [{ value: 'Jamaica', data: 'B' }],
tabDisabled: true});
tabDisabled: true
});
input.value = 'Jam';
autocomplete.onValueChange();