Skip to content

Commit

Permalink
MooTools automatically escapes HTML entities
Browse files Browse the repository at this point in the history
  • Loading branch information
kneath committed Oct 18, 2008
1 parent bb2b9c4 commit f124712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/timeframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ var Timeframe = new Class({
// Internal function to create buttons used for calendar navigation
_buildButtons: function(){
var buttons = new Hash({
previous: { label: '←', element: $(this.options.previousButton) },
previous: { label: '', element: $(this.options.previousButton) },
today: { label: 'T', element: $(this.options.todayButton) },
reset: { label: 'R', element: $(this.options.resetButton) },
next: { label: '→', element: $(this.options.nextButton) }
next: { label: '', element: $(this.options.nextButton) }
})

var buttonList = new Element('ul', {id: this.element.id + '_menu', className: 'timeframe_menu'});
Expand Down

0 comments on commit f124712

Please sign in to comment.