Skip to content
  • This project
    • Loading...
  • Sign in

apk_product / ForFun

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ForFun
  • assets
  • Script
  • UpdatePanel.js
  • 金学艇's avatar
    1.修复首页ScrollView滚动焦点框错乱 · bb7b0fc9 ...
    bb7b0fc9 Browse Files
    2.修复首页高分排行榜选中效果展示
    3.修复首页和分类页的翻页功能
    4.修复首页焦点显示和隐藏错乱的问题
    金学艇 authored 2020-03-08 09:43:53 +0800
UpdatePanel.js 381 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module.exports = cc.Class({
    extends: cc.Component,

    properties: {
        info: cc.Label,
        fileProgress: cc.ProgressBar,
        fileLabel: cc.Label,
        close: cc.Node,
        updateBtn: cc.Node
    },
    
    onLoad () {
        this.close.on(cc.Node.EventType.TOUCH_END, function () {
            this.node.parent.active = false;
        }, this);
    }
});