Changeset 3:cf375f1e7b0f for admin/js
- Timestamp:
- 04/27/11 09:06:30 (14 years ago)
- Branch:
- userprefs
- Location:
- admin/js
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_blog_theme.js
r0 r3 46 46 } 47 47 if (submit_r.length > 0 && $('input:radio',info).attr('id') != 'theme_default') { 48 var remove = $('<a href="#" class="button ">' + dotclear.msg.remove_this_theme + '</a>');48 var remove = $('<a href="#" class="button delete">' + dotclear.msg.remove_this_theme + '</a>'); 49 49 remove.click(function() { 50 50 var t_name = $(this).parents('#theme-box').find('div.theme-info h3:first').text(); -
admin/js/_index.js
r0 r3 11 11 12 12 if ($('input[name=save-publish]',f).length > 0) { 13 var btn = $('<input type="submit" class="submit"value="' + $('input[name=save-publish]',f).val() + '" tabindex="3" />');13 var btn = $('<input type="submit" value="' + $('input[name=save-publish]',f).val() + '" tabindex="3" />'); 14 14 $('input[name=save-publish]',f).remove(); 15 15 $('input[name=save]',f).after(btn).after(' '); -
admin/js/common.js
r0 r3 196 196 sizeBox(); 197 197 198 var img = $('< img src="images/help.png" alt="'+dotclear.msg.help+'" title="'+dotclear.msg.help+'" id="help-button" />');198 var img = $('<span id="help-button">'+dotclear.msg.help+'</span>'); 199 199 var select = $(); 200 200 img.click(function() { return toggle(); }); … … 339 339 $.extend({cookie:'dc_plugins_menu'},menu_settings) 340 340 ); 341 $('#favorites-menu h3:first').toggleWithLegend($('#favorites-menu ul:first'), 342 $.extend({cookie:'dc_favorites_menu'},menu_settings) 343 ); 341 344 342 345 $('#help').helpViewer(); -
admin/js/jquery/jquery.candyUpload.js
r0 r3 449 449 450 450 createControls: function() { 451 this.ctrl.btn_browse = $('<a href="#" > </a>').click(function() {452 return false; 453 }); 454 455 this.ctrl.btn_cancel = $('<a href="#" >' + this.locales.cancel + '</a>').click(function() {456 return false; 457 }); 458 459 this.ctrl.btn_clean = $('<a href="#" >' + this.locales.clean + '</a>').click(function() {460 return false; 461 }); 462 463 this.ctrl.btn_upload = $('<a href="#" >' + this.locales.upload + '</a>').click(function() {451 this.ctrl.btn_browse = $('<a href="#" class="button"> </a>').click(function() { 452 return false; 453 }); 454 455 this.ctrl.btn_cancel = $('<a href="#" class="button">' + this.locales.cancel + '</a>').click(function() { 456 return false; 457 }); 458 459 this.ctrl.btn_clean = $('<a href="#" class="button">' + this.locales.clean + '</a>').click(function() { 460 return false; 461 }); 462 463 this.ctrl.btn_upload = $('<a href="#" class="button">' + this.locales.upload + '</a>').click(function() { 464 464 return false; 465 465 });
Note: See TracChangeset
for help on using the changeset viewer.