Changeset 5875 in spip-zone
- Timestamp:
- Oct 4, 2006, 2:43:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/_dev_/widgets/widgets.js
r5873 r5875 9 9 // Ce bloc ne fonctionne pas :( 10 10 var w,h; 11 w = $(me).width(); 12 h = $(me).height(); 13 11 w = $(me).width()+'px'; 12 h = $(me).height()+'px'; 14 13 // charger le formulaire 15 14 $.get(url_widgets_html+encodeURIComponent(this.className), … … 27 26 .css('backgroundColor', 'yellow') 28 27 .css('font', 'inherit') // pour safari 29 .css({"width":"100%","height":"100%"}) // no luck! 30 .each(function(){ 31 this.focus(); 32 $(this).css({ 33 'fontSize': $(me).css('fontSize'), 34 'fontFamily': $(me).css('fontFamily') 35 }); 28 .css({"width":w,"height":h}) 29 .css({ 30 'fontSize': $(me).css('fontSize'), 31 'fontFamily': $(me).css('fontFamily') 36 32 }) 33 .each(function(){this.focus();}) 37 34 .end() 38 35 .end()
Note: See TracChangeset
for help on using the changeset viewer.