- Timestamp:
- 11/12/16 11:24:35 (8 years ago)
- Location:
- trunk/MobileIndico
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MobileIndico/indico.css
r18636 r18673 41 41 .indico .contribution { 42 42 background-color: #eee; 43 margin: 3px 0px 0px 0px;44 padding: 3px;45 -webkit-border-radius: 6px;43 margin: 0px 0px 0px 0px; 44 padding: 1px; 45 -webkit-border-radius: 3px; 46 46 } 47 47 -
trunk/MobileIndico/indico.js
r18640 r18673 1 1 var default_url = "https://indico.scc.kit.edu/indico/"; 2 var default_event = 2 15;2 var default_event = 254; 3 3 4 4 function process(ID, result) … … 82 82 83 83 // ======================================================= 84 list += "<div class='contribution'>"; 85 86 87 // ------------------------------------------------------- 88 list += "<span class='date'>"+e.startDate.time.substr(0,5)+" "; 89 list += "<a class='title' href='"+e.url+"'>"+e.title+"</a>"; 90 list += "</span>"; 91 // ------------------------------------------------------- 92 93 94 // ------------------------------------------------------- 95 list += "<span class='presenters'>"; 84 list += "<div class='contribution' data-role='collapsible'>"; 85 list += "<h1>"; 86 87 88 // ------------------------------------------------------- 89 list += "<span class='date'>"+e.startDate.time.substr(0,5)+" "; 90 list += "<a class='title' href='"+e.url+"'>"+e.title+"</a>"; 91 list += "</span>"; 92 // ------------------------------------------------------- 93 94 95 // ------------------------------------------------------- 96 list += "<span class='presenters'>"; 96 97 var p = e.presenters; 97 98 for (var j=0; j<p.length; j++) … … 104 105 list += "<br/>"; 105 106 } 106 list += "</span>"; 107 // ------------------------------------------------------- 108 109 110 list += "<span class='description'>"+e.description+"</span>"; 107 list += "</span>"; // presenters 108 list += "</h1>"; 109 // ------------------------------------------------------- 110 111 112 list += "<span class='description'>"+e.description+"</span>"; // Abstract 111 113 112 114
Note:
See TracChangeset
for help on using the changeset viewer.