Skip to content

Commit

Permalink
Fix trailing commas in JS
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jan 22, 2014
1 parent 4335620 commit fb44569
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/Core/js/keynavlist.js
Expand Up @@ -166,7 +166,7 @@ var KeyNavList = Class.create({

if ((divL.get('border-box-height') + dt + off.top + 10) > v.height) {
this.div.setStyle({
height: (v.height - dt - off.top - 10) + 'px',
height: (v.height - dt - off.top - 10) + 'px'
});
this.div.setStyle({
width: (2 * this.div.getWidth() - this.div.scrollWidth) + 'px'
Expand Down
2 changes: 1 addition & 1 deletion imp/js/dimpbase.js
Expand Up @@ -1244,7 +1244,7 @@ var DimpBase = {
mbox: baseelt.retrieve('mbox')
}, {
ajaxopts: {
asynchronous: false,
asynchronous: false
},
callback: function(r) {
baseelt.store('fixed', r.fixed);
Expand Down

0 comments on commit fb44569

Please sign in to comment.