Skip to content

Commit

Permalink
adding new dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmerz committed Jul 7, 2021
1 parent 7766048 commit 805b1f6
Show file tree
Hide file tree
Showing 5 changed files with 1,152 additions and 61 deletions.
11 changes: 8 additions & 3 deletions spectra-importer/dist/import/elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -12534,8 +12534,9 @@ <h4 class="page-header">
Polymer({
is: 'ecosis-doi',

setData : function(pkg) {
setData : function(pkg, pushed) {
this.pkg = pkg;
this.pushedToSearch = pushed;
this.pkg.on('save-end', function(){
if( this.doiUpdating ) {
window.location.reload();
Expand Down Expand Up @@ -12659,7 +12660,8 @@ <h4 class="page-header">
author : false,
'author email': false,
maintainer : false,
'maintainer email': false
'maintainer email': false,
'push to search': false
};

extras.forEach(function(e){
Expand Down Expand Up @@ -12694,6 +12696,9 @@ <h4 class="page-header">
if( this.pkg.getMaintainerEmail() !== '' ) {
valid['maintainer email'] = true;
}
if( (this.pushedToSearch instanceof Date) === true ) {
valid['push to search'] = true;
}

var canRequest = true;
var c = 0;
Expand Down Expand Up @@ -13089,7 +13094,7 @@ <h5>tl;dr</h5>
this.$.versionInput.value = pkg.getVersion();
this.$.websiteInput.value = pkg.getWebsite();
this.$.linkedDataInput.setData(pkg.getLinkedData());
this.$.doi.setData(pkg);
this.$.doi.setData(pkg, ecosis.ds.lastPushed);
this.updateVisibilityControl();
},

Expand Down
4 changes: 2 additions & 2 deletions spectra-importer/dist/import/scripts/build.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions spectra-importer/dist/import/styles/build.css

Large diffs are not rendered by default.

Loading

0 comments on commit 805b1f6

Please sign in to comment.