Removed unnecessary string

This commit is contained in:
Nicholas Thomson 2015-03-08 22:49:10 -04:00
parent 075b3e5b4e
commit 39712ca60e
2 changed files with 12 additions and 12 deletions

View file

@ -16,8 +16,7 @@
"checklist": "Checklist", "checklist": "Checklist",
"checklistText": "For Dailies, partially completed checklists reduce damage. For example, a 4-item checklist with 3 completed reduces damage for that incomplete Daily to 25%. Completed checklist items on a To-Do add a multiplier: 3 checks means +3x (total 4x) the Experience, Gold, and Mana.", "checklistText": "For Dailies, partially completed checklists reduce damage. For example, a 4-item checklist with 3 completed reduces damage for that incomplete Daily to 25%. Completed checklist items on a To-Do add a multiplier: 3 checks means +3x (total 4x) the Experience, Gold, and Mana.",
"expandCollapse": "Expand/Collapse", "expandCollapse": "Expand/Collapse",
"text": "Text", "text": "Title",
"title": "Title",
"extraNotes": "Extra Notes", "extraNotes": "Extra Notes",
"direction/Actions": "Direction/Actions", "direction/Actions": "Direction/Actions",
"advancedOptions": "Advanced Options", "advancedOptions": "Advanced Options",

View file

@ -138,16 +138,17 @@ li(bindonce='list', bo-id='"task-"+task.id', ng-repeat='task in obj[list.type+"s
span.glyphicon.glyphicon-tasks span.glyphicon.glyphicon-tasks
span=env.t('addChecklist') span=env.t('addChecklist')
form.checklist-form(ng-if='task.checklist') form.checklist-form(ng-if='task.checklist')
legend.option-title(ng-if='task.checklist[0]') fieldset.option-group(ng-if='!$state.includes("options.social.challenges")')
span.hint(popover=env.t('checklistText'),popover-trigger='mouseenter',popover-placement='bottom')=env.t('checklist') legend.option-title(ng-if='task.checklist[0]')
ul(hrpg-sort-checklist) span.hint(popover=env.t('checklistText'),popover-trigger='mouseenter',popover-placement='bottom')=env.t('checklist')
li(ng-repeat='item in task.checklist') ul(hrpg-sort-checklist)
//input(type='checkbox',ng-model='item.completed',ng-change='saveTask(task,true)') li(ng-repeat='item in task.checklist')
//-,ng-blur='saveTask(task,true)') //input(type='checkbox',ng-model='item.completed',ng-change='saveTask(task,true)')
span.checklist-icon.glyphicon.glyphicon-resize-vertical() //-,ng-blur='saveTask(task,true)')
input(type='text',ng-model='item.text',ui-keydown="{'8 46':'removeChecklistItem(task,$event,$index)'}",ui-keyup="{'13':'addChecklistItem(task,$event,$index)','38 40':'navigateChecklist(task,$index,$event)'}") span.checklist-icon.glyphicon.glyphicon-resize-vertical()
a(ng-click='removeChecklistItem(task,$event,$index,true)') input(type='text',ng-model='item.text',ui-keydown="{'8 46':'removeChecklistItem(task,$event,$index)'}",ui-keyup="{'13':'addChecklistItem(task,$event,$index)','38 40':'navigateChecklist(task,$index,$event)'}")
span.glyphicon.glyphicon-trash(tooltip=env.t('delete')) a(ng-click='removeChecklistItem(task,$event,$index,true)')
span.glyphicon.glyphicon-trash(tooltip=env.t('delete'))
form(ng-submit='saveTask(task,false,true)') form(ng-submit='saveTask(task,false,true)')
// Notes text input // Notes text input