Rename the variable that to lcd

This commit is contained in:
Amir E. Aharoni
2012-10-08 17:22:01 +02:00
parent 2e22c5c550
commit f14073a21a

View File

@@ -249,26 +249,26 @@
}, },
listen: function () { listen: function () {
var that = this; var lcd = this;
if ( this.options.clickhandler ) { if ( this.options.clickhandler ) {
this.$element.on( 'click', 'div.row li', function() { this.$element.on( 'click', 'div.row li', function() {
that.options.clickhandler.call( this, $( this ).data( 'code' ) ); lcd.options.clickhandler.call( this, $( this ).data( 'code' ) );
} ); } );
} }
// The region section need to be in sync with the map filter. // The region section need to be in sync with the map filter.
that.$element.scroll( function () { lcd.$element.scroll( function () {
var scrollTop = $( this ).position().top, var scrollTop = $( this ).position().top,
scrollBottom = $( this ).height(); scrollBottom = $( this ).height();
if ( this.offsetHeight + this.scrollTop >= this.scrollHeight / 2 ) { if ( this.offsetHeight + this.scrollTop >= this.scrollHeight / 2 ) {
that.$element.trigger( 'scrollend' ); lcd.$element.trigger( 'scrollend' );
} }
// The region section need to be in sync with the map filter. // The region section need to be in sync with the map filter.
var inviewRegion = 'WW'; var inviewRegion = 'WW';
that.$element.find( 'div.uls-lcd-region-section' ).each( function () { lcd.$element.find( 'div.uls-lcd-region-section' ).each( function () {
var top = $( this ).position().top, var top = $( this ).position().top,
height = $( this ).height(); height = $( this ).height();