Skip to content

Commit 498ccb8

Browse files
authored
Merge pull request #18 from ladybirdweb/ClientPanel-Updation
Update UI Dependencies
2 parents d3ef5d9 + 134b002 commit 498ccb8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+30270
-348
lines changed

HTML/404.html

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,8 @@
1111
<title>NowKnow | Knowledge Base HTML Template</title>
1212

1313
<!-- Favicons -->
14-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
15-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
16-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
17-
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
1814
<link rel="shortcut icon" href="assets/ico/favicon.png">
1915

20-
<!-- Styles -->
21-
<!-- <link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" type="text/css" />-->
22-
<!-- <link rel="stylesheet" href="assets/font-awesome/css/all.min.css" type="text/css" />-->
23-
<!-- <link rel="stylesheet" href="assets/app/css/app.css" type="text/css" />-->
24-
<!-- <link rel="stylesheet" href="assets/app/css/edit.css" type="text/css" />-->
25-
<!-- <link rel="stylesheet" href="assets/app/css/custom.css" type="text/css" />-->
2616
<!--[if lt IE 9]>
2717
<script type="text/javascript" src="assets/app/js/html5shiv.min.js"></script>
2818
<script type="text/javascript" src="assets/app/js/respond.min.js"></script>
@@ -389,10 +379,6 @@ <h2 class="section-title h4 clearfix">Get Updates <i class="line"></i></h2>
389379

390380
</div><!-- #page -->
391381

392-
<!-- Script -->
393-
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> -->
394-
<!-- <script type="text/javascript" src="assets/app/js/jquery-3.4.1.min.js"></script> -->
395-
396382
<script type="text/javascript" src="assets/app/js/jquery.min.js"></script>
397383

398384
<script type="text/javascript" src="assets/app/js/popper.min.js"></script>

HTML/archive.html

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,8 @@
1111
<title>NowKnow | Knowledge Base HTML Template</title>
1212

1313
<!-- Favicons -->
14-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
15-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
16-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
17-
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
1814
<link rel="shortcut icon" href="assets/ico/favicon.png">
1915

20-
<!-- Styles -->
21-
<!-- <link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" type="text/css" />-->
22-
<!-- <link rel="stylesheet" href="assets/font-awesome/css/all.min.css" type="text/css" />-->
23-
<!-- <link rel="stylesheet" href="assets/app/css/app.css" type="text/css" />-->
24-
<!-- <link rel="stylesheet" href="assets/app/css/edit.css" type="text/css" />-->
25-
<!-- <link rel="stylesheet" href="assets/app/css/custom.css" type="text/css" />-->
2616
<!--[if lt IE 9]>
2717
<script type="text/javascript" src="assets/app/js/html5shiv.min.js"></script>
2818
<script type="text/javascript" src="assets/app/js/respond.min.js"></script>
@@ -590,10 +580,6 @@ <h2 class="section-title h4 clearfix">Get Updates <i class="line"></i></h2>
590580
</div><!-- #page -->
591581

592582
<!-- Script -->
593-
594-
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> -->
595-
<!-- <script type="text/javascript" src="assets/app/js/jquery-3.4.1.min.js"></script> -->
596-
597583
<script type="text/javascript" src="assets/app/js/jquery.min.js"></script>
598584

599585
<script type="text/javascript" src="assets/app/js/popper.min.js"></script>

HTML/assets/app/js/autocomplete.js

Lines changed: 60 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/**
2-
* Ajax Autocomplete for jQuery, version 1.4.10
3-
* (c) 2017 Tomas Kirda
4-
*
5-
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
6-
* For details, see the web site: https://github.com/devbridge/jQuery-Autocomplete
7-
*/
2+
* Ajax Autocomplete for jQuery, version %version%
3+
* (c) 2017 Tomas Kirda
4+
*
5+
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
6+
* For details, see the web site: https://github.com/devbridge/jQuery-Autocomplete
7+
*/
88

99
/*jslint browser: true, white: true, single: true, this: true, multivar: true */
1010
/*global define, window, document, jQuery, exports, require */
@@ -89,40 +89,40 @@
8989
$.Autocomplete = Autocomplete;
9090

9191
Autocomplete.defaults = {
92-
ajaxSettings: {},
93-
autoSelectFirst: false,
94-
appendTo: 'body',
95-
serviceUrl: null,
96-
lookup: null,
97-
onSelect: null,
98-
width: 'auto',
99-
minChars: 1,
100-
maxHeight: 300,
101-
deferRequestBy: 0,
102-
params: {},
103-
formatResult: _formatResult,
104-
formatGroup: _formatGroup,
105-
delimiter: null,
106-
zIndex: 9999,
107-
type: 'GET',
108-
noCache: false,
109-
onSearchStart: noop,
110-
onSearchComplete: noop,
111-
onSearchError: noop,
112-
preserveInput: false,
113-
containerClass: 'autocomplete-suggestions',
114-
tabDisabled: false,
115-
dataType: 'text',
116-
currentRequest: null,
117-
triggerSelectOnValidInput: true,
118-
preventBadQueries: true,
119-
lookupFilter: _lookupFilter,
120-
paramName: 'query',
121-
transformResult: _transformResult,
122-
showNoSuggestionNotice: false,
123-
noSuggestionNotice: 'No results',
124-
orientation: 'bottom',
125-
forceFixPosition: false
92+
ajaxSettings: {},
93+
autoSelectFirst: false,
94+
appendTo: 'body',
95+
serviceUrl: null,
96+
lookup: null,
97+
onSelect: null,
98+
width: 'auto',
99+
minChars: 1,
100+
maxHeight: 300,
101+
deferRequestBy: 0,
102+
params: {},
103+
formatResult: _formatResult,
104+
formatGroup: _formatGroup,
105+
delimiter: null,
106+
zIndex: 9999,
107+
type: 'GET',
108+
noCache: false,
109+
onSearchStart: noop,
110+
onSearchComplete: noop,
111+
onSearchError: noop,
112+
preserveInput: false,
113+
containerClass: 'autocomplete-suggestions',
114+
tabDisabled: false,
115+
dataType: 'text',
116+
currentRequest: null,
117+
triggerSelectOnValidInput: true,
118+
preventBadQueries: true,
119+
lookupFilter: _lookupFilter,
120+
paramName: 'query',
121+
transformResult: _transformResult,
122+
showNoSuggestionNotice: false,
123+
noSuggestionNotice: 'No results',
124+
orientation: 'bottom',
125+
forceFixPosition: false
126126
};
127127

128128
function _lookupFilter(suggestion, originalQuery, queryLowerCase) {
@@ -167,7 +167,7 @@
167167

168168
// html() deals with many types: htmlString or Element or Array or jQuery
169169
that.noSuggestionsContainer = $('<div class="autocomplete-no-suggestion"></div>')
170-
.html(this.options.noSuggestionNotice).get(0);
170+
.html(this.options.noSuggestionNotice).get(0);
171171

172172
that.suggestionsContainer = Autocomplete.utils.createNode(options.containerClass);
173173

@@ -219,6 +219,10 @@
219219
onFocus: function () {
220220
var that = this;
221221

222+
if (that.disabled) {
223+
return;
224+
}
225+
222226
that.fixPosition();
223227

224228
if (that.el.val().length >= that.options.minChars) {
@@ -270,7 +274,7 @@
270274
'z-index': options.zIndex
271275
});
272276

273-
this.options = options;
277+
this.options = options;
274278
},
275279

276280

@@ -336,9 +340,9 @@
336340
var opacity = $container.css('opacity'),
337341
parentOffsetDiff;
338342

339-
if (!that.visible){
340-
$container.css('opacity', 0).show();
341-
}
343+
if (!that.visible){
344+
$container.css('opacity', 0).show();
345+
}
342346

343347
parentOffsetDiff = $container.offsetParent().offset();
344348
styles.top -= parentOffsetDiff.top;
@@ -654,16 +658,16 @@
654658
html = '',
655659
category,
656660
formatGroup = function (suggestion, index) {
657-
var currentCategory = suggestion.data[groupBy];
661+
var currentCategory = suggestion.data[groupBy];
658662

659-
if (category === currentCategory){
660-
return '';
661-
}
663+
if (category === currentCategory){
664+
return '';
665+
}
662666

663-
category = currentCategory;
667+
category = currentCategory;
664668

665-
return options.formatGroup(suggestion, category);
666-
};
669+
return options.formatGroup(suggestion, category);
670+
};
667671

668672
if (options.triggerSelectOnValidInput && that.isExactMatch(value)) {
669673
that.select(0);
@@ -703,10 +707,10 @@
703707
},
704708

705709
noSuggestions: function() {
706-
var that = this,
707-
beforeRender = that.options.beforeRender,
708-
container = $(that.suggestionsContainer),
709-
noSuggestionsContainer = $(that.noSuggestionsContainer);
710+
var that = this,
711+
beforeRender = that.options.beforeRender,
712+
container = $(that.suggestionsContainer),
713+
noSuggestionsContainer = $(that.noSuggestionsContainer);
710714

711715
this.adjustContainerWidth();
712716

HTML/assets/app/js/bootstrap.bundle.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.

HTML/assets/app/js/jquery-3.4.1.min.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

HTML/assets/app/js/jquery-3.7.1.min.js

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

HTML/assets/app/js/jquery.min.js

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

HTML/assets/app/js/popper.min.js

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

0 commit comments

Comments
 (0)