Authored by 梁志锋

update

framework @ 119c247f
1 -Subproject commit 75bbc3b075de19f239532f60c5995d06c5f814e2 1 +Subproject commit 119c247f5cf929aa1e059e40609bb16dd6b58f05
@@ -68,4 +68,14 @@ ccHammer.on('tap', function(e) { @@ -68,4 +68,14 @@ ccHammer.on('tap', function(e) {
68 $subLevel.not('.hide').addClass('hide'); 68 $subLevel.not('.hide').addClass('hide');
69 $subLevel.eq(index).removeClass('hide'); 69 $subLevel.eq(index).removeClass('hide');
70 } 70 }
  71 +});
  72 +
  73 +$('.sub-level').bind('touchstart', function(e) {
  74 + var $cur = $(e.target);
  75 + $cur.addClass('a-highlight');
  76 +
  77 + if ($curClickSubLevel) {
  78 + $curClickSubLevel.removeClass('a-highlight');
  79 + }
  80 + $curClickSubLevel = $cur;
71 }); 81 });
@@ -99,7 +99,6 @@ @@ -99,7 +99,6 @@
99 background: #fff; 99 background: #fff;
100 width: 60%; 100 width: 60%;
101 height: 100%; 101 height: 100%;
102 - overflow: auto;  
103 } 102 }
104 103
105 .sub-level { 104 .sub-level {
@@ -126,4 +125,8 @@ @@ -126,4 +125,8 @@
126 color: #000; 125 color: #000;
127 } 126 }
128 } 127 }
  128 +
  129 + .a-highlight {
  130 + text-decoration: underline;
  131 + }
129 } 132 }