Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

inspired on PR #372 update jQuery and angular #434

Merged
merged 1 commit into from
Aug 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Resources/views/Translation/overview.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<tbody>
{% for domain in domains %}
<tr columns="columns">
<td><a href="{{ path('lexik_translation_grid') }}#?filter[_domain]={{ domain | url_encode }}">{{ domain }}</a></td>
<td><a href="{{ path('lexik_translation_grid') }}#!?filter[_domain]={{ domain | url_encode }}">{{ domain }}</a></td>
{% for locale in locales %}
<td class="text-center">
<span class="text {{ stats[domain][locale]['completed'] == 100 ? 'text-success' : 'text-danger' }}">
Expand Down
4 changes: 2 additions & 2 deletions Resources/views/layout.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
{% block lexik_content '' %}

{% block lexik_javascript_footer %}
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.9/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script src="{{ asset('bundles/lexiktranslation/ng-table/ng-table.min.js') }}"></script>
{% endblock %}
</body>
Expand Down