Skip to content

Commit 28c12be

Browse files
committed
fixing lint errors
update changelog
1 parent d05bc14 commit 28c12be

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ Change Log
55
This change log pertains to builds.
66

77
----------------
8+
* 1.1.0 (2018-03-01)
9+
* Enter key fixed, no longer refreshes browser in single property modal windows.
10+
* Implement lists in bfestore
11+
* Fix date rendering
12+
* Implement user templates
13+
* Fix headings
14+
* Speedup jQuery Datatable loading
815

916
* 1.0.0 (2018-10-18)
1017
* Fixes for labels

src/bfe.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ bfe.define('src/bfe', ['require', 'exports', 'src/bfestore', 'src/bfelogging', '
333333
if (text !== undefined) {
334334
_.each(text, function (el) {
335335
if (el['@id'] !== undefined) {
336-
id = el['@id'];
336+
var id = el['@id'];
337337
var title = _.where(data, {
338338
'@id': id
339339
});
@@ -369,7 +369,7 @@ bfe.define('src/bfe', ['require', 'exports', 'src/bfestore', 'src/bfelogging', '
369369
if (lccns.length === 1) {
370370
text = lccns[0]['http://www.w3.org/1999/02/22-rdf-syntax-ns#value'][0]['@value'];
371371
} else {
372-
for (i = 0; i < lccns.length; i++) {
372+
for (var i = 0; i < lccns.length; i++) {
373373
if (!lccns[i]['http://www.w3.org/1999/02/22-rdf-syntax-ns#value'][0]['@value'].startsWith('n')) { text = lccns[i]['http://www.w3.org/1999/02/22-rdf-syntax-ns#value'][0]['@value']; }
374374
}
375375
}

src/bfelookups.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ bfe.define('src/lookups/lcnames', ['require', 'exports', 'src/lookups/lcshared',
394394
if (id.length==32){
395395
var d = l;
396396
}else{
397-
var d = l + ' (' + id + ')';
397+
d = l + ' (' + id + ')';
398398
}
399399

400400
if (suggestions.length === 5) {

src/bfeusertemplates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ bfe.define('src/bfeusertemplates', ['require', 'exports' ], function(require, ex
315315
// find all the properties and see if they are enabled in this template
316316
$(".template-property ").each(function(i,el){
317317
el = $(el)
318-
var enabled = true;
318+
//var enabled = true;
319319
var data = (el).data();
320320

321321
if (storedProfiles[exports.activeProfile] && storedProfiles[exports.activeProfile][exports.activeTemplate] && typeof storedProfiles[exports.activeProfile][exports.activeTemplate][data.uriLabel] !== 'undefined'){

0 commit comments

Comments
 (0)