Volltext-Suche: Tabelle für Texte aus Dateien im DMS. DB und Rose
[kivitendo-erp.git] / js / jquery.checkall.js
index cef64ef..5556d7a 100644 (file)
@@ -1,17 +1,17 @@
 /*
  * jQuery SelectAll plugin 1.1
  *
- * Copyright (c) 2009 Sven Schöling
+ * Copyright (c) 2009 Sven Schöling
  */
 
 ;(function($) {
 
 $.fn.extend({
-  checkall: function(target, property) {
+  checkall: function(target, property, inverted) {
     if (property == null)
       property = 'checked';
     return $(this).click(function() {
-      $(target).prop(property, $(this).prop('checked'));
+      $(target).prop(property, inverted ? !$(this).prop('checked') : $(this).prop('checked'));
     });
   }
 });