• This project
    • Loading...
  • Sign in

张泽世 / yohobuywap-node · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • public
  • js
  • product
  • outlet-will-end.page.js
  • fix path issue
    dec0cecd
    by biao
    2016-06-14 18:02:01 +0800  
    Browse Files
outlet-will-end.page.js 350 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/**
 * Created by runner on 16/6/14.
 */
var $ = require('yoho-jquery'),
    Countdown = require('./outlet/countdown'),
    tip = require('../plugin/tip');

var el = $('.cd-lite');

require('../common');

new Countdown.Countdown({
    el: el
});

$('.will-end-back').on('click', function() {
    tip.show('活动即将结束');
    return false;
});