Revision 7964
Added by ben leinfelder over 11 years ago
lib/style/common/templates/metacatui/entryForm.js | ||
---|---|---|
215 | 215 |
return count; |
216 | 216 |
} |
217 | 217 |
|
218 |
/** |
|
219 |
* Deprecated in favor of createIconLink() method |
|
220 |
* |
|
218 | 221 |
function createImageLink(imgSrc, imgAlt, imgOnClick, cursor) { |
219 | 222 |
var link = document.createElement("a"); |
220 | 223 |
var img = document.createElement("img"); |
... | ... | |
231 | 234 |
link.appendChild(img); |
232 | 235 |
return link; |
233 | 236 |
} |
237 |
*/ |
|
234 | 238 |
|
235 | 239 |
function createIconLink(iconClass, iconAlt, iconOnClick, cursor) { |
236 | 240 |
var link = document.createElement("a"); |
... | ... | |
704 | 708 |
var imgTD = createTD("","right"); |
705 | 709 |
imgTD.className = 'rightCol'; |
706 | 710 |
|
707 |
imgTD.appendChild(createIconLink("icon-arrow-up"",
|
|
711 |
imgTD.appendChild(createIconLink("icon-arrow-up", |
|
708 | 712 |
"Move Up", "moveUpRow(event)", |
709 | 713 |
"pointer")); |
710 | 714 |
imgTD.appendChild(document.createTextNode(" ")); |
Also available in: Unified diff
remove double quotes