mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
use an annotation processor instead of a groovy script because of classloading issues
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
link.attr('href', url + '/rest');
|
||||
link.html(link.attr('href'));
|
||||
|
||||
url = url + '/api/swagger-doc/resources';
|
||||
url = url + '/api/api-docs/resources';
|
||||
window.swaggerUi = new SwaggerUi({
|
||||
discoveryUrl:url,
|
||||
apiKey:"",
|
||||
|
||||
@@ -721,7 +721,7 @@ module.controller('FeedListCtrl', [
|
||||
}
|
||||
|
||||
var callback = function(data) {
|
||||
if (data.offset == 0) {
|
||||
if (data.offset === 0) {
|
||||
$scope.entries = [];
|
||||
}
|
||||
for ( var i = 0; i < data.entries.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user