diff options
Diffstat (limited to 'tests/visual')
-rw-r--r-- | tests/visual/spinner.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/visual/spinner.html b/tests/visual/spinner.html index de05b6d25..f5b441e26 100644 --- a/tests/visual/spinner.html +++ b/tests/visual/spinner.html @@ -32,11 +32,19 @@ $(function(){ 's3': {currency: '$'}, 's4': {}, 's5': { + // + // Two methods of adding external items to the spinner + // + // method 1: on initalisation call the add method directly and format html manually init: function(ui) { for (var i=0; i<itemList.length; i++) { - ui.add(itemList[i].title +' <a href="'+ itemList[i].url +'" target="_blank">»</a>'); + ui.add('<a href="'+ itemList[i].url +'" target="_blank">'+ itemList[i].title +'</a>'); } - } + }, + + // method 2: use the format and items options in combination + format: '%(title) <a href="%(url)" target="_blank">»</a>', + items: itemList } }; |