Skip to content

Commit

Permalink
Merge pull request #1204 from adsabs/1203-fix-references-links-bibcode
Browse files Browse the repository at this point in the history
Fix References Links
  • Loading branch information
ehenneken authored Jul 11, 2017
2 parents d65c7a1 + 4bdb73d commit 620f8c1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion src/js/widgets/resources/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,22 @@ define([
'analytics'
], function (_, ApiQuery, analytics) {

var FIELDS = ['links_data'];
var FIELDS = [
'links_data',
'[citations]',
'property',
'bibcode',
'first_author',
'year',
'page',
'pub',
'pubdate',
'title',
'volume',
'doi',
'issue',
'issn'
];
var API_QUERY_DELAY = 300;

var actions = {};
Expand Down
2 changes: 1 addition & 1 deletion src/js/widgets/resources/reducers.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
define([], function (helper) {
define([], function () {

var initialState = function () {
return {
Expand Down

0 comments on commit 620f8c1

Please sign in to comment.