Browse Source

errant console log removal and fixing right margin on labeled icon inputs

pull/341/head
jlukic 11 years ago
parent
commit
ce9f96b521
2 changed files with 1 additions and 3 deletions
  1. 2
      server/files/javascript/semantic.js
  2. 2
      src/elements/input.less

2
server/files/javascript/semantic.js

@ -256,7 +256,6 @@ semantic.ready = function() {
leadingSpaces = line.length - line.replace(/^\s*/g, '').length;
if(leadingSpaces !== 0) {
indent = leadingSpaces - spacesPerIndent;
console.log('returning' + indent);
return false;
}
});
@ -384,7 +383,6 @@ semantic.ready = function() {
$visibleStuck = $(this).find('.fixed.column .image, .fixed.column .content'),
isInitialized = ($visibleStuck.parent('.sticky-wrapper').size() !== 0)
;
console.log(this);
if(!isInitialized) {
$visibleStuck
.waypoint('sticky', {

2
src/elements/input.less

@ -264,7 +264,7 @@
padding-right: 3.25em !important;
}
.ui.labeled.icon.input:not(.left) > .icon {
margin-right: 0.75em;
margin-right: 1.25em;
}

Loading…
Cancel
Save