git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc1a348
)
Make sure that .html(Function) gets the correct previous value.
author
jeresig
<jeresig@gmail.com>
Thu, 7 Jan 2010 18:33:30 +0000
(13:33 -0500)
committer
jeresig
<jeresig@gmail.com>
Thu, 7 Jan 2010 18:33:30 +0000
(13:33 -0500)
src/manipulation.js
patch
|
blob
|
history
diff --git
a/src/manipulation.js
b/src/manipulation.js
index
081bb54
..
9ed22ba
100644
(file)
--- a/
src/manipulation.js
+++ b/
src/manipulation.js
@@
-196,6
+196,14
@@
jQuery.fn.extend({
this.empty().append( value );
}
+ } else if ( jQuery.isFunction( value ) ) {
+ this.each(function(i){
+ var self = jQuery(this), old = self.html();
+ self.empty().append(function(){
+ return value.call( this, i, old );
+ });
+ });
+
} else {
this.empty().append( value );
}