@@ -76,10 +76,10 @@ window.RecurringSelectDialog =
76
76
77
77
mainEventInit: ->
78
78
# Tap hooks are for jQueryMobile
79
- @outer_holder.on 'click tap', @outerCancel
80
- @content.on 'click tap', 'h1 a', @cancel
81
- @save_button = @content.find('input.rs_save').on "click tap", @save
82
- @content.find('input.rs_cancel').on "click tap", @cancel
79
+ @outer_holder.on 'tap', @outerCancel
80
+ @content.on 'tap', 'h1 a', @cancel
81
+ @save_button = @content.find('input.rs_save').on "tap", @save
82
+ @content.find('input.rs_cancel').on "tap", @cancel
83
83
84
84
freqInit: ->
85
85
@freq_select = @outer_holder.find ".rs_frequency"
@@ -201,7 +201,7 @@ window.RecurringSelectDialog =
201
201
if $.inArray(-1, @current_rule.hash.validations.day_of_month) != -1
202
202
end_of_month_link.addClass("selected")
203
203
204
- monthly_calendar.find("a").on "click tap", @dateOfMonthChanged
204
+ monthly_calendar.find("a").on "tap", @dateOfMonthChanged
205
205
206
206
init_calendar_weeks: (section) =>
207
207
monthly_calendar = section.find(".rs_calendar_week")
@@ -223,7 +223,7 @@ window.RecurringSelectDialog =
223
223
$.each @current_rule.hash.validations.day_of_week, (key, value) ->
224
224
$.each value, (index, instance) ->
225
225
section.find("a[day='#{key}'][instance='#{instance}']").addClass("selected")
226
- monthly_calendar.find("a").on "click tap", @weekOfMonthChanged
226
+ monthly_calendar.find("a").on "tap", @weekOfMonthChanged
227
227
228
228
toggle_month_view: =>
229
229
week_mode = @content.find(".monthly_rule_type_week").prop("checked")
0 commit comments