Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
biao
9 years ago
Commit
873b62cda8dc2fd1706d0269da4a26d4e511b8f8
1 parent
2aef0cb8
update the coding format
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
static/js/index/channel.js
static/js/index/search.js
static/js/index/channel.js
View file @
873b62c
...
...
@@ -3,7 +3,8 @@
* @author: bikai<kai.bi@yoho.cn>
* @date: 2015/10/28
*/
var
$
=
require
(
'jquery'
);
var
$
=
require
(
'jquery'
),
security
=
require
(
'../plugin/security'
);
var
$searchBox
=
$
(
'.search-box'
),
$box
=
$
(
'.box'
),
...
...
@@ -52,6 +53,9 @@ $searchBox.children('.clear-text').on('touchstart', function() {
});
$searchBox
.
children
(
'.search-icon'
).
on
(
'touchstart'
,
function
()
{
if
(
security
.
hasDangerInput
())
{
return
false
;
}
$indexSearch
.
submit
();
});
...
...
static/js/index/search.js
View file @
873b62c
...
...
@@ -49,7 +49,7 @@ cHammer.on('tap', function() {
$
(
'#search'
).
on
(
'touchend'
,
function
()
{
if
(
security
.
hasDangerInput
())
{
return
false
;
return
false
;
}
$
(
this
).
closest
(
'form'
).
submit
();
return
false
;
...
...
Please
register
or
login
to post a comment