Skip to content

Instantly share code, notes, and snippets.

@omarqureshi
Created February 27, 2014 15:51
Show Gist options
  • Save omarqureshi/9252744 to your computer and use it in GitHub Desktop.
Save omarqureshi/9252744 to your computer and use it in GitHub Desktop.
<div class="reminder-at">
<div class="sms-options-group">
<strong>Schedule SMS Reminder</strong>
<label>
<!--[if lte IE 7]>
<input class="sms-options" type="radio" name="goal[reminder_type]" value="recurring" ng-click="setGoalReminderType(goal, 'recurring')" ng-checked="goal.reminder_type == 'recurring'">
<![endif]-->
<!--[if gt IE 7]><!-->
<input class="sms-options" type="radio" name="goal[reminder_type]" value="recurring" ng-model="goal.reminder_type">
<!--<![endif]-->
Regular
</label>
<label>
<!--[if lte IE 7]>
<input class="sms-options" type="radio" name="goal[reminder_type]" value="once" ng-click="setGoalReminderType(goal, 'once')" ng-checked="goal.reminder_type == 'once'">
<![endif]-->
<!--[if gt IE 7]><!-->
<input class="sms-options" type="radio" name="goal[reminder_type]" value="once" ng-model="goal.reminder_type">
<!--<![endif]-->
Once
</label>
<label>
<!--[if lte IE 7]>
<input class="sms-options" type="radio" name="goal[reminder_type]" value="none" ng-click="setGoalReminderType(goal, 'none')" ng-checked="goal.reminder_type == 'none'">
<![endif]-->
<!--[if gt IE 7]><!-->
<input class="sms-options" type="radio" name="goal[reminder_type]" value="none" ng-model="goal.reminder_type">
<!--<![endif]-->
None
</label>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment