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
xuqi
2015-10-09 10:29:31 +0800
Commit
885a481c4f292763eab89451a4d204842569b225
1 parent
bf53be8e
use zepto instead of jquery
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
11 deletions
static/js/passport/api.js
static/js/passport/back/email-success.js
static/js/passport/back/email.js
static/js/passport/back/mobile.js
static/js/passport/back/new-password.js
static/js/passport/code.js
static/js/passport/login/interational.js
static/js/passport/login/login.js
static/js/passport/register/password.js
static/js/passport/register/register.js
static/package.json
static/js/passport/api.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
trim
=
$
.
trim
;
...
...
static/js/passport/back/email-success.js
View file @
885a481
...
...
@@ -4,7 +4,7 @@
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$resend
=
$
(
'#resend'
);
...
...
static/js/passport/back/email.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$email
=
$
(
'#email'
),
$btnSure
=
$
(
'#btn-sure'
);
...
...
static/js/passport/back/mobile.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$phoneNum
=
$
(
'#phone-num'
),
$countrySelector
=
$
(
'#country-selector'
),
...
...
static/js/passport/back/new-password.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$pwd
=
$
(
'#pwd'
),
$btnOk
=
$
(
'#btn-ok'
);
...
...
static/js/passport/code.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
module
.
exports
=
function
(
useInRegister
)
{
var
$captcha
=
$
(
'#captcha'
),
...
...
static/js/passport/login/interational.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$phoneNum
=
$
(
'#phone-num'
),
$countrySelect
=
$
(
'#country-select'
),
...
...
static/js/passport/login/login.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/9/30
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$account
=
$
(
'#account'
),
$pwd
=
$
(
'#pwd'
),
...
...
static/js/passport/register/password.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$pwd
=
$
(
'#pwd'
),
$btnSure
=
$
(
'#btn-sure'
);
...
...
static/js/passport/register/register.js
View file @
885a481
...
...
@@ -3,7 +3,7 @@
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/8
*/
var
$
=
require
(
'yoho.
jquery
'
);
var
$
=
require
(
'yoho.
zepto
'
);
var
$phoneNum
=
$
(
'#phone-num'
),
$countrySelect
=
$
(
'#country-select'
),
...
...
static/package.json
View file @
885a481
...
...
@@ -16,7 +16,7 @@
"spm"
:
{
"main"
:
"index.js"
,
"dependencies"
:
{
"yoho.zepto"
:
"1.1.6"
,
"yoho.zepto"
:
"1.1.6
0
"
,
"yoho.jquery"
:
"1.8.3"
},
"devDependencies"
:
{
...
...
Please
register
or
login
to post a comment