Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision b671b160

Von Sven Schöling vor fast 11 Jahren hinzugefügt

  • ID b671b160f38e249bf35a1cffd186fcf69a21de92
  • Vorgänger aef6b5ce
  • Nachfolger 8317fdf4

jquery.checkall für Mahnungen invertiert

Unterschiede anzeigen:

js/jquery.checkall.js
7 7
;(function($) {
8 8

  
9 9
$.fn.extend({
10
  checkall: function(target, property) {
10
  checkall: function(target, property, inverted) {
11 11
    if (property == null)
12 12
      property = 'checked';
13 13
    return $(this).click(function() {
14
      $(target).prop(property, $(this).prop('checked'));
14
      $(target).prop(property, inverted ? !$(this).prop('checked') : $(this).prop('checked'));
15 15
    });
16 16
  }
17 17
});

Auch abrufbar als: Unified diff