Projekt

Obecné

Profil

« Předchozí | Další » 

Revize a3f0485d

Přidáno uživatelem Michal Kliment před více než 9 roky(ů)

Release 1.1.4

Zobrazit rozdíly:

application/vendors/deb/freenetis/changelog
freenetis (1.1.4) stable; urgency=hight
* Fix release
* Fixes #880: Fixes filter initialization due to forgotten JS debug
* Fixes #881: Filter initialization if field has no class
-- Ondrej Fibich <ondrej.fibich@gmail.com> Tue, 11 Feb 2014 15:12:02 +0100
freenetis (1.1.3) stable; urgency=hight
* Fix release
* Fixes #876: Fixes clearing of filter form values after filter sending
application/views/filter_form_template.php
/**
* Type of filter changed
*
* @author Michal Kliment
* @author Ondřej Fibich
*/
$(".t").die("change").live("change", function (){
// filter items
var $op = $(this).parent().find("select.o");
var $val = $(this).parent().find(":input.v");console.log($val.length);
var $val = $(this).parent().find(":input.v");
// value
var val = $(this).val();
var name = $val.attr("name");
......
// set CSS classes
$val.addClass('v')
.addClass(types[val]['classes'].join(' '))
.addClass(types[val]['css_classes'].join(' '));
if (types[val]['classes'] && types[val]['classes'].length) {
$val.addClass(types[val]['classes'].join(' '));
}
if (types[val]['css_classes'] && types[val]['css_classes'].length) {
$val.addClass(types[val]['css_classes'].join(' '));
}
// type has callback
if (types[val]['callback'] != null)
version.php
* The current version of FreenetIS.
* This value must be changed by developers in a new release of FreenetIS.
*/
define('FREENETIS_VERSION', '1.1.3');
define('FREENETIS_VERSION', '1.1.4');

Také k dispozici: Unified diff