Update jQuery to version 2.0.3

https://fedorahosted.org/freeipa/ticket/2811
This commit is contained in:
Petr Vobornik 2013-11-04 18:25:40 +01:00 committed by Martin Kosek
parent 38cb39b67f
commit 6f9c7eb5f8
3 changed files with 10 additions and 7 deletions

View File

@ -25,6 +25,7 @@
define(['dojo/_base/array',
'dojo/_base/lang',
'dojo/Evented',
'dojo/has',
'dojo/keys',
'dojo/on',
'./builder',
@ -34,7 +35,7 @@ define(['dojo/_base/array',
'./reg',
'./text'
],
function(array, lang, Evented, keys, on, builder, IPA, $, phases, reg, text) {
function(array, lang, Evented, has, keys, on, builder, IPA, $, phases, reg, text) {
/**
* Widget module
@ -2264,7 +2265,7 @@ IPA.table_widget = function (spec) {
that.tbody = $('<tbody/>').appendTo(that.table);
// workaround for #2835
if ($.browser.msie) {
if (has('ie')) {
that.tbody.mousedown(function(event) {
that.scroll_top = that.tbody.scrollTop();
window.setTimeout(function() {
@ -3135,13 +3136,13 @@ IPA.combobox_widget = function(spec) {
that.list = $('<select/>', {
name: 'list',
size: that.size,
style: 'width: 100%',
keydown: that.list_on_keydown,
keyup: that.list_on_keyup,
change: that.list_on_change,
blur: that.list_child_on_blur
}).appendTo(div);
that.list.prop('size', that.size);
if (that.undo) {
that.create_undo(container);

File diff suppressed because one or more lines are too long

0
install/ui/src/libs/jquery.ordered-map.js Executable file → Normal file
View File