Fix misspelling

This commit is contained in:
John Firebaugh
2013-10-11 14:35:01 -07:00
parent 416a92f5f5
commit 04f0806ce2
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -1082,7 +1082,7 @@ a:hover .icon.out-link { background-position: -500px -14px;}
/* hide but preserve in layout */
.inspector-hover .modified .form-label .modified-icon,
.inspector-hover .entity-editor-pane button.minor,
.inspector-hover .combobox-carat,
.inspector-hover .combobox-caret,
.inspector-hover .entity-editor-pane .header button,
.inspector-hover .spin-control,
.inspector-hover .hide-toggle:before,
@@ -1176,7 +1176,7 @@ input,
.modified .form-label .modified-icon,
.entity-editor-pane button.minor,
.combobox-carat,
.combobox-caret,
.entity-editor-pane .header button,
.toggle-list label span,
.spin-control,
@@ -1405,7 +1405,7 @@ input[type=number] {
padding-right: 10%;
}
.form-field .wiki-title ~ .combobox-carat {
.form-field .wiki-title ~ .combobox-caret {
margin-left: -18%;
margin-right: 9%;
}
@@ -1553,7 +1553,7 @@ div.combobox {
border-top: 0;
}
.combobox-carat {
.combobox-caret {
margin-left: -20px;
margin-right: 10px;
display:inline-block;
+4 -4
View File
@@ -30,14 +30,14 @@ d3.combobox = function() {
var parent = this.parentNode,
sibling = this.nextSibling;
var carat = d3.select(parent).selectAll('.combobox-carat')
var caret = d3.select(parent).selectAll('.combobox-caret')
.filter(function(d) { return d === input.node(); })
.data([input.node()]);
carat.enter().insert('div', function() { return sibling; })
.attr('class', 'combobox-carat');
caret.enter().insert('div', function() { return sibling; })
.attr('class', 'combobox-caret');
carat
caret
.on('mousedown', function () {
// prevent the form element from blurring. it blurs
// on mousedown