Ugrade jquery.editable.js to version 1.7.3
This commit is contained in:
parent
c1fc12deaf
commit
76945f3b39
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* Jeditable - jQuery in place edit plugin
|
* Jeditable - jQuery in place edit plugin
|
||||||
*
|
*
|
||||||
* Copyright (c) 2006-2009 Mika Tuupola, Dylan Verheul
|
* Copyright (c) 2006-2013 Mika Tuupola, Dylan Verheul
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license:
|
* Licensed under the MIT license:
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
@ -15,7 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Version 1.7.2-dev
|
* Version 1.7.3
|
||||||
*
|
*
|
||||||
* ** means there is basic unit tests for this parameter.
|
* ** means there is basic unit tests for this parameter.
|
||||||
*
|
*
|
||||||
@ -452,8 +452,8 @@
|
|||||||
text: {
|
text: {
|
||||||
element : function(settings, original) {
|
element : function(settings, original) {
|
||||||
var input = $('<input />');
|
var input = $('<input />');
|
||||||
if (settings.width != 'none') { input.attr('width', settings.width); }
|
if (settings.width != 'none') { input.width(settings.width); }
|
||||||
if (settings.height != 'none') { input.attr('height', settings.height); }
|
if (settings.height != 'none') { input.height(settings.height); }
|
||||||
/* https://bugzilla.mozilla.org/show_bug.cgi?id=236791 */
|
/* https://bugzilla.mozilla.org/show_bug.cgi?id=236791 */
|
||||||
//input[0].setAttribute('autocomplete','off');
|
//input[0].setAttribute('autocomplete','off');
|
||||||
input.attr('autocomplete','off');
|
input.attr('autocomplete','off');
|
||||||
|
Loading…
Reference in New Issue
Block a user