Skip to content

Commit c67c99b

Browse files
committed
Upgrade to jQuery 3.5.1.
1 parent ee478a9 commit c67c99b

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Olivier Giulieri
3+
Copyright (c) 2020 Olivier Giulieri
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ A re-write for React in under construction at [Structured-Filter-React](https://
448448
<a name="License"></a>
449449
## License
450450

451-
Copyright (c) 2019 [Olivier Giulieri](https://evoluteur.github.io/).
451+
Copyright (c) 2020 [Olivier Giulieri](https://evoluteur.github.io/).
452452

453453
Structured-Filter is released under the [MIT license](https://github.com/evoluteur/structured-filter/blob/master/LICENSE.md#structured-filter).
454454

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "structured-filter",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "jQuery UI widget for structured queries",
55
"homepage": "http://evoluteur.github.io/structured-filter/",
66
"main": [
77
"js/structured-filter.js",
88
"less/structured-filter.less"
99
],
1010
"license": "MIT",
11-
"copyright": "(c) 2019 Olivier Giulieri",
11+
"copyright": "(c) 2020 Olivier Giulieri",
1212
"authors": "Olivier Giulieri (https://evoluteur.github.io/)",
1313
"dependencies": {
14-
"jquery": "~3.4.1",
14+
"jquery": "~3.5.1",
1515
"jquery-ui": "^1.12.1"
1616
},
1717
"ignore": [

css/structured-filter.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
structured-filter 2.0.3
2+
structured-filter 2.0.4
33
http://evoluteur.github.io/structured-filter/
4-
(c) 2019 Olivier Giulieri
4+
(c) 2020 Olivier Giulieri
55
*/
66
.structFilter {
77
min-height: 20px;

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel="stylesheet" href="css/demo.css" type="text/css" media="all">
1010
<link rel="stylesheet" href="css/structured-filter.css" type="text/css" media="all">
1111

12-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js" type="text/javascript"></script>
12+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js" type="text/javascript"></script>
1313
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" type="text/javascript"></script>
1414
<script src="js/structured-filter.min.js" type="text/javascript" type="text/javascript"></script>
1515
<script src="js/model-demo1.js" type="text/javascript"></script>
@@ -24,7 +24,7 @@ <h2 id="github">
2424

2525
<h1>Structured-Filter</h1>
2626

27-
<p>Structured-Filter (currently v2.0.3) is a Web UI for building structured search queries. It is a full jQuery UI widget, supporting various configurations and themes.
27+
<p>Structured-Filter (currently v2.0.4) is a Web UI for building structured search queries. It is a full jQuery UI widget, supporting various configurations and themes.
2828
</p>
2929

3030
<p>
@@ -68,7 +68,7 @@ <h1>Structured-Filter</h1>
6868

6969
<p>Structured-Filter is released under the <a href="http://github.com/evoluteur/structured-filter/raw/master/LICENSE.md">MIT license</a>.</p>
7070

71-
<p>&#169; 2019 <a href="https://evoluteur.github.io/">Olivier Giulieri</a></p>
71+
<p>&#169; 2020 <a href="https://evoluteur.github.io/">Olivier Giulieri</a></p>
7272
<br/><br/>
7373

7474

js/structured-filter.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* structured-filter 2.0.3
2+
* structured-filter 2.0.4
33
*
4-
* (c) 2019 Olivier Giulieri
4+
* (c) 2020 Olivier Giulieri
55
*
66
* https://github.com/evoluteur/structured-filter
77
*
@@ -437,7 +437,7 @@ $.widget( 'evol.structFilter', {
437437
break;
438438
case fTypes.list:
439439
h+='<span id="value">'+
440-
((fld.list.length>7)?'(<input type="checkbox" id="checkAll" value="1"/><label for="checkAll">All</label>) ':'')+
440+
((fld.list.length>7)?'(<input type="checkbox" id="checkAll" value="1"><label for="checkAll">All</label>) ':'')+
441441
EvoUI.inputCheckboxes(fld.list)+
442442
'</span>';
443443
break;
@@ -459,15 +459,15 @@ $.widget( 'evol.structFilter', {
459459
case fTypes.time:
460460
case fTypes.number:
461461
var iType=(fType==fTypes.date)?'text':fType;
462-
h+='<input id="value" type="'+iType+'"/>';
462+
h+='<input id="value" type="'+iType+'">';
463463
if(opBetween){
464464
h+='<span class="as-Txt">'+i18n.opAnd+' </span>'+
465-
'<input id="value2" type="'+iType+'"/>';
465+
'<input id="value2" type="'+iType+'">';
466466
}
467467
addOK=false;
468468
break;
469469
default:
470-
h+='<input id="value" type="text"/>';
470+
h+='<input id="value" type="text">';
471471
addOK=false;
472472
}
473473
editor.append(h);
@@ -697,7 +697,7 @@ var EvoUI={
697697
},
698698

699699
inputHidden:function(id,val){
700-
return '<input type="hidden" name="'+id+'" value="'+val+'"/>';
700+
return '<input type="hidden" name="'+id+'" value="'+val+'">';
701701
},
702702

703703
inputOption:function(fID,fV){
@@ -708,7 +708,7 @@ var EvoUI={
708708

709709
inputCheckboxes:function(fLOV){
710710
return fLOV.map(function(lv){
711-
return '<input type="checkbox" id="'+lv.id+'" value="'+lv.id+'"/>'+
711+
return '<input type="checkbox" id="'+lv.id+'" value="'+lv.id+'">'+
712712
'<label for="'+lv.id+'">'+lv.label+'</label> ';
713713
}).join('');
714714
}

js/structured-filter.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

less/structured-filter.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// Structured Filter for jQuery UI
33
// https://github.com/evoluteur/structured-filter
4-
// (c) 2019 Olivier Giulieri
4+
// (c) 2020 Olivier Giulieri
55

66
.border-radius(@r){
77
border-radius: @r;

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "structured-filter",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Generic Web UI for building structured search or filter queries. With it you can build structured search conditions like Firstname starts with 'A' and Birthday after 1/1/1990 and State in (CA, NY, FL)...",
5-
"copyright": "(c) 2019 Olivier Giulieri",
5+
"copyright": "(c) 2020 Olivier Giulieri",
66
"homepage": "http://evoluteur.github.io/structured-filter/",
77
"author": "Olivier Giulieri (https://evoluteur.github.io/)",
88
"license": "MIT",
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/evoluteur/structured-filter/issues"
1515
},
1616
"dependencies": {
17-
"jquery": "~3.4.1",
17+
"jquery": "~3.5.1",
1818
"jquery-ui": "^1.12.1"
1919
},
2020
"devDependencies": {

0 commit comments

Comments
 (0)