<?php namespace ProcessWire;

class JqueryTableSorter extends ModuleJS { 

	public static function getModuleInfo() {
		return array(
			'title' => 'jQuery Table Sorter Plugin',
			'version' => '2.31.3',
			'summary' => 'Provides a jQuery plugin for sorting tables.',
			'href' => 'https://mottie.github.io/tablesorter/', 
		);
	}

	// note ModuleJS automatically loads any JS or CSS files with the same basename as this module

	public function __construct() {
		$this->addComponents(array(
			'widgets' => 'widgets.min.js'
		));
	}
}
