Skip to content

Commit

Permalink
Merge pull request #1255 from /issues/1146
Browse files Browse the repository at this point in the history
[RFR] Remove instances of {0xC2, 0xA0} in source files
  • Loading branch information
fzaninotto authored Dec 1, 2016
2 parents 63c532b + 52d81d6 commit ef14153
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/javascripts/ng-admin/Crud/column/maJsonColumn.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function maJsonColumn($compile) {
<td ng-switch="guessType(val)">
<ma-json-column ng-switch-when="Object" value="::val"></ma-json-column>
<ma-json-column ng-switch-when="Array" value="::val"></ma-json-column>
<span ng-switch-when="Literal">{{ val }}</span>
<span ng-switch-when="Literal">{{ val }}</span>
</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion src/javascripts/ng-admin/Crud/delete/batchDelete.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ma-list-button ng-if="::entity.listView().enabled" entity="::entity"></ma-list-button>
</ma-view-actions>
<h1 compile="::batchDeleteController.title">
{{ 'DELETE' | translate }} {{ ::batchDeleteController.entityIds.length }} {{ ::batchDeleteController.view.entity.name() | humanize | pluralize | translate }}
{{ 'DELETE' | translate }} {{ ::batchDeleteController.entityIds.length }} {{ ::batchDeleteController.view.entity.name() | humanize | pluralize | translate }}
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/javascripts/ng-admin/Crud/delete/delete.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ma-list-button ng-if="::entity.listView().enabled" entity="::entity"></ma-list-button>
</ma-view-actions>
<h1 compile="::deleteController.title">
{{ 'DELETE' | translate }} {{ ::deleteController.view.entity.label() | humanize:true | singularize | translate }} #{{ ::entry.identifierValue }}
{{ 'DELETE' | translate }} {{ ::deleteController.view.entity.label() | humanize:true | singularize | translate }} #{{ ::entry.identifierValue }}
</h1>
<p class="lead" ng-if="::deleteController.description" compile="::deleteController.description">{{ ::deleteController.description }}</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/javascripts/ng-admin/Crud/form/create.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ma-list-button ng-if="::entity.listView().enabled" entity="::entity"></ma-list-button>
</ma-view-actions>
<h1 compile="::formController.title">
{{ 'CREATE_NEW' | translate }} {{ ::formController.view.entity.label() | humanize:true | singularize | translate }}
{{ 'CREATE_NEW' | translate }} {{ ::formController.view.entity.label() | humanize:true | singularize | translate }}
</h1>
<p class="lead" ng-if="::formController.description" compile="::formController.description">{{ ::formController.description }}</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/javascripts/ng-admin/Crud/show/show.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ma-delete-button ng-if="::entity.deletionView().enabled" entry="entry" entity="::entity"></ma-delete-button>
</ma-view-actions>
<h1 compile="::showController.title">
{{ ::showController.view.entity.label() | humanize | singularize | translate }} #{{ ::entry.identifierValue }} {{ 'DETAIL' | translate }}
{{ ::showController.view.entity.label() | humanize | singularize | translate }} #{{ ::entry.identifierValue }} {{ 'DETAIL' | translate }}
</h1>
<p class="lead" ng-if="::showController.description" compile="::showController.description">{{ ::showController.description }}</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/javascripts/ng-admin/Main/view/404.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="row">
<div class="col-lg-12">
<div class="page-header">
<h1>{{ 'NOT_FOUND' | translate }}</h1>
<h1>{{ 'NOT_FOUND' | translate }}</h1>
</div>
</div>
</div>
Expand Down

0 comments on commit ef14153

Please sign in to comment.