Skip to content

Commit

Permalink
Merge pull request #8 from keitaroinc/master
Browse files Browse the repository at this point in the history
Fix missing semicolon for outline property
  • Loading branch information
klikstermkd authored Oct 25, 2016
2 parents 2eb5c0f + 35103bb commit c6393c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/orgdashboards/fanstatic/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function _setActiveLanguage() {
function _setFocusOnSelectFormControls() {
var baseColor = $('.all-data > .data-block-header')[0].style.background;
var rule = ['border-color: ' + baseColor + ';',
'outline': '0',
'outline': '0;',
'box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 3px ' + baseColor + ';'].join('');
var organization = window.location.pathname.split('/').reverse()[1];

Expand Down

0 comments on commit c6393c1

Please sign in to comment.