-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Multi language related issues fixed.
* Authorization code grant type work going on.
- Loading branch information
Sivachidambaram. S
committed
Jan 22, 2016
1 parent
8ad3b57
commit 6e924b5
Showing
71 changed files
with
600 additions
and
332 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<div class="form-group list-group-item-text" data-checklist-id="<%- checklist_item.get('id') %>"> | ||
<div class="checkbox list-group-item-text"> | ||
<input id="checklist<%- checklist_item.get('id') %>" type="checkbox" class="hide <% if(!_.isUndefined(authuser.user)){ if(checklist_item.get('is_completed') == 'true' || checklist_item.get('is_completed') == true || checklist_item.get('is_completed') == 1){ %> js-markas-incomplete <% } else{%> js-markas-completed <% } } %>" <% if(checklist_item.get('is_completed') == 'true' || checklist_item.get('is_completed') == true || checklist_item.get('is_completed') == 1){ %>checked<% } %> <% if(_.isUndefined(authuser.user)){%> disabled<%}%> > | ||
<input id="checklist<%- checklist_item.get('id') %>" type="checkbox" class="hide <% if(!_.isUndefined(authuser.user)){ if(parseInt(checklist_item.get('is_completed')) === 1){ %> js-markas-incomplete <% } else{%> js-markas-completed <% } } %>" <% if(parseInt(checklist_item.get('is_completed')) === 1){ %>checked<% } %> <% if(_.isUndefined(authuser.user)){%> disabled<%}%> > | ||
<label for="checklist<%- checklist_item.get('id') %>" class="pull-left js-checklist-item-head"> | ||
</label> | ||
<div class="col-xs-11 row"> | ||
<a href="#" class="row pull-left <% if(!_.isUndefined(authuser.user) && !_.isEmpty(role_links.where({slug: 'edit_checklist_item'}))){ %>js-show-item-edit-form<% }else{ %>js-no-action<%}%> <% if(checklist_item.get('is_completed') == 'true' || checklist_item.get('is_completed') == true || checklist_item.get('is_completed') == 1){ %> strike-through-text <% } %>" ><%- checklist_item.get('name') %></a> | ||
<a href="#" class="row pull-left <% if(!_.isUndefined(authuser.user) && !_.isEmpty(role_links.where({slug: 'edit_checklist_item'}))){ %>js-show-item-edit-form<% }else{ %>js-no-action<%}%> <% if(parseInt(checklist_item.get('is_completed')) === 1){ %> strike-through-text <% } %>" ><%- checklist_item.get('name') %></a> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<% var date = ''; var time = ''; if (card.attributes.due_date !== null && card.attributes.due_date !== 'NULL') { var date_time = card.attributes.due_date.split('T'); date_time = date_time[0].split(' '); date = date_time[0]; time = date_time[1]; } %><div class="form-group"><div class="col-xs-6"><label><%- i18next.t('Date') %></label><input type="text" class="form-control input-sm js-card-duedate-edit-<%=card.attributes.id%>" name="due_date" data-format="yyyy-MM-dd" value="<%= date%>" required></div><div class="col-xs-6"><label><%- i18next.t('Time') %></label><input type="text" class="form-control input-sm js-card-duetime-edit-<%=card.attributes.id%>" name="due_time" data-format="hh:mm:ss" value="<%= time%>" required></div></div><div class="form-group"><div class="col-xs-6"><label for="save" class="sr-only"><%- i18next.t('Save') %></label><input type="submit" value="<%- i18next.t('Save') %>" id="save" class="btn btn-primary" id="submitCardDueDateEditForm"></div><% if(!_.isEmpty(card.attributes.due_date) && card.attributes.due_date != 'NULL') { %><div class="col-xs-6"><label for="remove" class="sr-only"><%- i18next.t('Remove') %></label><input type="reset" value="Remove" class="btn btn-default js-remove-due-date"></div><% } %></div> | ||
<% var date = ''; var time = ''; if (card.attributes.due_date !== null && card.attributes.due_date !== 'NULL') { var date_time = card.attributes.due_date.split('T'); date_time = date_time[0].split(' '); date = date_time[0]; time = date_time[1]; } %><div class="form-group"><div class="col-xs-6"><label><%- i18next.t('Date') %></label><input type="text" class="form-control input-sm js-card-duedate-edit-<%=card.attributes.id%>" name="due_date" data-format="yyyy-MM-dd" value="<%= date%>" required></div><div class="col-xs-6"><label><%- i18next.t('Time') %></label><input type="text" class="form-control input-sm js-card-duetime-edit-<%=card.attributes.id%>" name="due_time" data-format="hh:mm:ss" value="<%= time%>" required></div></div><div class="form-group"><div class="col-xs-6"><label for="save" class="sr-only"><%- i18next.t('Save') %></label><input type="submit" value="<%- i18next.t('Save') %>" id="save" class="btn btn-primary" id="submitCardDueDateEditForm"></div><% if(!_.isEmpty(card.attributes.due_date) && card.attributes.due_date != 'NULL') { %><div class="col-xs-6"><label for="remove" class="sr-only"><%- i18next.t('Remove') %></label><input type="reset" value="<%- i18next.t('Remove') %>" class="btn btn-default js-remove-due-date"></div><% } %></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.