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