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
unknown
2015-12-24 11:31:37 +0800
Commit
e9c73b675d98718d84d63bd887291583e8f517a6
1 parent
452bc3a6
simple header js @review by 徐祁
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
1 deletions
web-static/js/common.js
web-static/js/header.js
web-static/js/simple-header.js
web-static/sass/passport/_back.scss
web-static/js/common.js
View file @
e9c73b6
...
...
@@ -5,9 +5,13 @@
*/
var
$
=
require
(
'yoho.jquery'
);
require
(
'./footer'
);
require
(
'./simple-header'
);
require
(
'./header'
);
function
cookie
(
name
)
{
var
cookies
=
document
.
cookie
,
cookieVal
,
...
...
web-static/js/header.js
View file @
e9c73b6
...
...
@@ -827,6 +827,7 @@ function actionSearch() {
$
(
'#query_key'
).
search
(
searchDomain
);
}
/**
* 初始化函数
* @return {[type]} [description]
...
...
web-static/js/simple-header.js
0 → 100644
View file @
e9c73b6
var
$
=
require
(
'yoho.jquery'
);
if
(
$
(
'.simple-header'
).
size
()
>
0
)
{
$
(
'.tool-options'
).
on
(
'mouseenter'
,
function
()
{
$
(
this
).
find
(
'.tool-select'
).
fadeIn
();
}).
on
(
'mouseleave'
,
function
()
{
$
(
this
).
find
(
'.tool-select'
).
fadeOut
();
});
}
\ No newline at end of file
...
...
web-static/sass/passport/_back.scss
View file @
e9c73b6
...
...
@@ -2,7 +2,7 @@
font-size
:
14px
;
.content
{
margin
:
175px
0
0
!
important
;
margin
:
175px
0
0
!
important
;
}
.back-header
{
...
...
Please
register
or
login
to post a comment