optimizations for iOS
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>de.tilman</groupId>
|
||||
<artifactId>next-transactions</artifactId>
|
||||
<version>1.5.10</version>
|
||||
<version>1.5.11</version>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
||||
@@ -47,6 +47,9 @@ public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
|
||||
|
||||
@Override
|
||||
public void writeHeaders(HttpServletRequest request, HttpServletResponse response) {
|
||||
|
||||
// originalWriter.writeHeaders(request, response);
|
||||
|
||||
String requestUri = request.getRequestURI();
|
||||
if (requestUri.startsWith("/public/")
|
||||
|| requestUri.startsWith("/bootstrap")
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
var transactionsApp = angular.module('transactionsApp', ['ui.bootstrap', 'ngRoute', 'transactionControllers', 'transactionServices' ]);
|
||||
|
||||
transactionsApp.config([ '$routeProvider', function($routeProvider) {
|
||||
$routeProvider.when('/list', {
|
||||
$routeProvider.when('/home', {
|
||||
templateUrl : 'app/transaction-list.html',
|
||||
controller : 'TransactionListCtrl'
|
||||
}).when('/import', {
|
||||
@@ -11,6 +11,6 @@ transactionsApp.config([ '$routeProvider', function($routeProvider) {
|
||||
templateUrl : 'app/import-list.html',
|
||||
controller : 'ImportListCtrl'
|
||||
}).otherwise({
|
||||
redirectTo : '/list'
|
||||
redirectTo : '/home'
|
||||
});
|
||||
} ]);
|
||||
|
||||
@@ -71,7 +71,7 @@ label {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.importTable th, .importTable td {
|
||||
.importTable {
|
||||
font-size: 80%;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user