|
@@ -102,8 +102,12 @@ function audioPlay(id){
|
|
function audioPause(id){
|
|
function audioPause(id){
|
|
$('#auido_'+ id).find('.sound').removeClass('playing');
|
|
$('#auido_'+ id).find('.sound').removeClass('playing');
|
|
}
|
|
}
|
|
-function emit(id,txt){
|
|
|
|
|
|
+function emit(id,txt,type){
|
|
$('#live_note_'+ id).html(txt);
|
|
$('#live_note_'+ id).html(txt);
|
|
|
|
+ var href = $('#live_note_'+ id).attr('href');
|
|
|
|
+ var temp = href.split('note=');
|
|
|
|
+ href = href[0] + 'note=' + type;
|
|
|
|
+ $('#live_note_'+ id).attr('href', href);
|
|
}
|
|
}
|
|
|
|
|
|
</script>
|
|
</script>
|