Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1410 from interactivellama/repeater-action-glyphi…
Browse files Browse the repository at this point in the history
…cons

Add glyphicons to example page
  • Loading branch information
BenjaminNeilDavis committed Jul 23, 2015
2 parents ef9522f + aa83eac commit add62c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -760,19 +760,19 @@ define(function (require) {
{
name: 'edit',
html: function () {
return '<div class="fuelux-icon fuelux-icon-pencil"></div> Edit'
return '<span class="glyphicon glyphicon-pencil"></span> Edit'
}
},
{
name: 'copy',
html: function () {
return '<div class="fuelux-icon fuelux-icon-copy"></div> Copy'
return '<span class="glyphicon glyphicon-copy"></span> Copy'
}
},
{
name: 'delete',
html: function () {
return '<div class="fuelux-icon fuelux-icon-delete"></div> Delete'
return '<span class="glyphicon glyphicon-trash"></span> Delete'
},
clickAction: function(helpers, callback) {
console.log('hey it worked');
Expand Down

0 comments on commit add62c4

Please sign in to comment.