Changeset 506ce7 in indico


Ignore:
Timestamp:
09/16/10 17:44:43 (3 years ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
Children:
8eabfb, f3e480
Parents:
48d258
Message:

[FIX] Display all the speakers names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/htdocs/js/indico/Timetable/Draw.js

    rbd7556 r506ce7  
    696696            var i = 0; 
    697697            each(self.eventData.presenters, function(p) { 
    698                 speakers.append(i++ > 0 ? ', ' : '' + p.name); 
     698                speakers.append((i++ > 0 ? '; ' : '') + p.name); 
    699699                if (p.affiliation && p.affiliation !== '') { 
    700700                    speakers.append(Html.em({style: {fontSize: '12px'}}, ' (' + p.affiliation + ')')); 
Note: See TracChangeset for help on using the changeset viewer.