Skip to content

Commit

Permalink
References #102 - Updated v2.9.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gfranko committed Jan 25, 2013
1 parent ea90423 commit 1522a1e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
3 changes: 2 additions & 1 deletion demos/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@
<script src="../src/javascripts/jquery.selectBoxIt.js"></script>
<script>
jQuery(function($) {
$("#test").selectBoxIt();

window.selectBox = $("#test").selectBoxIt().data("selectBoxIt");

$('#test1').selectBoxIt({theme: "jqueryui"});

Expand Down
4 changes: 3 additions & 1 deletion src/javascripts/jquery.selectBoxIt.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,9 @@
"tabindex": self.selectBox.attr("tabindex") || "0",

// IE specific attribute to not allow the element to be selected
"unselectable": "on"
"unselectable": "on",

"data": $.extend({}, true, {}, self.selectBox.data())

}).

Expand Down
2 changes: 1 addition & 1 deletion src/javascripts/jquery.selectBoxIt.core.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/javascripts/jquery.selectBoxIt.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,9 @@
"tabindex": self.selectBox.attr("tabindex") || "0",

// IE specific attribute to not allow the element to be selected
"unselectable": "on"
"unselectable": "on",

"data": $.extend({}, true, {}, self.selectBox.data())

}).

Expand Down
2 changes: 1 addition & 1 deletion src/javascripts/jquery.selectBoxIt.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions src/stylesheets/SelectBoxIt/jquery.selectBoxIt.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@
border-top-left-radius: 6px;
}

/* The first drop down option */
.selectboxit-optgroup-header + .selectboxit-option-first {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
}

/* The last drop down option */
.selectboxit-option-last {
border-bottom-right-radius: 6px;
Expand All @@ -116,6 +122,7 @@
/* Dropdown List Optgroup Headers */
.selectboxit-optgroup-header {
font-weight: bold;
padding: 5px;
}

/* Dropdown List Optgroup Options */
Expand Down

0 comments on commit 1522a1e

Please sign in to comment.