1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Fix for jQuery 1.9

This commit is contained in:
Schlogen 2013-01-22 17:00:38 -05:00
parent e89a851727
commit 567cb7dbe7

View File

@ -244,7 +244,7 @@ the specific language governing permissions and limitations under the Apache Lic
function measureTextWidth(e) {
if (!sizer){
var style = e[0].currentStyle || window.getComputedStyle(e[0], null);
sizer = $("<div></div>").css({
sizer = $(document.createElement("div")).css({
position: "absolute",
left: "-10000px",
top: "-10000px",
@ -725,7 +725,7 @@ the specific language governing permissions and limitations under the Apache Lic
if (compound) { node.addClass("select2-result-with-children"); }
node.addClass(self.opts.formatResultCssClass(result));
label=$("<div></div>");
label=$(document.createElement("div"));
label.addClass("select2-result-label");
formatted=opts.formatResult(result, label, query);
@ -1432,7 +1432,7 @@ the specific language governing permissions and limitations under the Apache Lic
// single
createContainer: function () {
var container = $("<div></div>", {
var container = $(document.createElement("div").attr({
"class": "select2-container"
}).html([
" <a href='javascript:void(0)' onclick='return false;' class='select2-choice'>",
@ -1830,7 +1830,7 @@ the specific language governing permissions and limitations under the Apache Lic
// multi
createContainer: function () {
var container = $("<div></div>", {
var container = $(document.createElement("div").attr({
"class": "select2-container select2-container-multi"
}).html([
" <ul class='select2-choices'>",