Goods become the sole responsibility of the bidder at the time of payment and the bidder assumes all risk of loss and damage to property at that time. McLemore Auction Company, LLC reserves the right to resell any property that has not been paid for in full by the end of the stated accounting period. In this case, the bidder remains responsible for the original purchase payment and the cost of collecting that payment and/or any damages resulting from the resale of the property.<\/p>","convenience_fee":" 0 ", " affiliate_id ":" 0","archived":"0","preview_period":"0","state_abbreviation":"TN","registration_time":"","location_override":""," start_end_override ": " " ,"time_interval ":"1","extended_bidding":"1","description":"
Stock up on essentials at your favorite Nashville Department Store Sale Auction! About many General Merchandise, Sundries, Kitchenware and Household Products including Feit Outdoor LED Electric String Lights, Sunforce Solar String Lights, LED Strip Lights, Charmin Toilet Scarf, Reynolds Wrap Products, Cascade, Scott Toilet Paper, Duracell Batteries and much more. More of the big warehouse wholesale clubs you know and love will be sold without reserve to the highest bidder. Don't miss this opportunity to save big - bid now! A buyer premium of 10% applies.<\/p>\n
Auction manager:
<\/strong>Chris Lewis
(912) 243-0345
chris@mclemoreauction.com<\/a><\/p>","allow_custom_bids":"","enable_charitable_organizations":"0","increment":"1","starting_bid":"1.00","flat_increment":"0.00","payment_gateway":"AuthDotNet","gateway_account":"","close_groups":"5","extended_bidding_threshold":"5","county":"","extended_bidding_interval":"-5","consignor_id":"0","transcript":"","audio_feed":null,"send_closing_alert":"1","send_admin_closing_alert":"","feed_type":"","completed":"0","flat_rate_shipping":"0.00","paused_time":null,"paused_duration":null,"paused_status":null,"maximum_highbidder_bids":null,"hide_bidhistory_after_sale":"1","currency":"$","clerking_type":"cataloged","aff_logo":null,"blind_bidding":"0","category":"35","shipping_methods":"","documents":[],"time_offset":-3600}; return data;});bidItem.controller('ItemDetailCtrl', ['$scope', '$filter', '$timeout', '$interval', 'bidItemData', function($scope, $filter, $timeout, $interval, bidItemData){ $scope.auction = bidItemData.auction; $scope.item = bidItemData.item; $scope.current_time = current_time; $scope.enable_buy_item_now = enable_buy_item_now; $scope.enable_blind_bidding = enable_blind_bidding; $scope.user_item_distance = 'Calculating...'; $scope.is_admin = false; $.ajax({ type: 'GET', dataType: 'json', url: '/auctionhome/timestamp', async: false, success: function (returndata){ $scope.current_time = parseInt(returndata.current_time, 10); } }); $scope.time_difference = ($scope.current_time - Math.floor(Date.now() / 1000)); if($scope.time_difference > -2 & $scope.time_difference < 2){ $scope.time_difference = 0; } $scope.current_time = (Math.floor(Date.now() / 1000) + $scope.time_difference + $scope.auction.time_offset); $scope.current_user = parseInt(current_user, 10); $scope.seconds = parseInt($scope.item.end_time, 10) - $scope.current_time; $scope.lang = lang; $scope.show_customer_info = show_customer_info; $scope.realtime = realtime; $scope.crowd_bidder = crowd_bidder; $scope.crowd_bidder_username = crowd_bidder_username; $scope.user_deposited_amount = parseInt('0', 10); $scope.disable_bid_history = disable_bidhistory_after_sale; $scope.show_bid_history = true; $scope.item.end_time = parseInt($scope.item.end_time, 10); $scope.item.start_time = parseInt($scope.item.start_time, 10); $scope.item.quantity = parseInt($scope.item.quantity, 10); $scope.item.high_bidder = parseInt($scope.item.high_bidder, 10); $scope.item.buy_now = parseFloat($scope.item.buy_now); $scope.item.current_bid = parseFloat($scope.item.current_bid); $scope.item.minimum_bid = parseFloat($scope.item.minimum_bid); $scope.auction.starts = parseInt($scope.auction.starts, 10); $scope.auction.ends = parseInt($scope.auction.ends, 10); $scope.live_not_started = false; if(is_auction_liveonline){ $scope.live_not_started = $scope.current_time < $scope.auction.ends; } if($scope.disable_bid_history & $scope.item.start_time > 0 && $scope.item.start_time <= $scope.current_time && $scope.item.end_time <= $scope.current_time && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } if($scope.auction.starts > $scope.current_time){ var timeout = parseInt($scope.auction.starts - $scope.current_time + 1)*1000; if(timeout >= 2147483647) timeout = 2147483647; $timeout(function (){ $scope.initData(); }, timeout); } if(is_auction_liveonline & $scope.auction.ends > $scope.current_time){ var timeout = parseInt($scope.auction.ends - $scope.current_time) * 1000; if(timeout >= 2147483647) timeout = 2147483647; setTimeout(function (){ smodal('', 'The live auction has started! Click \'Ok\' to enter the live auction.', true, '', function (){ location.href = '/auction/liveonline/' + $scope.auction.id; }, true, function (){ location.href = '/auction/liveonline/' + $scope.auction.id; }, 0, ''); }, timeout); } if(realtime & ! angular.isDefined($scope.current_interval)){ // Interval is updating current time of the scope $scope.current_interval = $interval(function (){ $scope.current_time = (Math.floor(Date.now() / 1000) + $scope.time_difference + $scope.auction.time_offset); $scope.seconds = $scope.item.end_time - $scope.current_time; if($scope.disable_bid_history & (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale)) && $scope.seconds <= 0){ $scope.show_bid_history = false; } }, 1000); } $scope.scrollToGallery = function(){ $('#imgtab,#detailstab').click(); $('html, body').animate({ scrollTop: $('#itemtabs div.tab_content:visible').offset().top }, 800); }; // Init function of the scope item $scope.initData = function(){ // If auction is ongoing and realtime is enabled then initialize pusher API if(realtime & !angular.isDefined($scope.pusher) && parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time){ $scope.pusher = new Pusher(pusher_api_key, {cluster: pusher_cluster, disableStats: true, pong_timeout: 20000, activity_timeout: 10000});// Enable for logging pusher events on development, not for production environment// Pusher.log = function(message) {// if (window.console & window.console.log) {// window.console.log(message);// }// }; var first_pusher_connection = true; $scope.pusher.connection.bind('state_change', function(states){ if(states.previous === 'initialized' & states.current === 'connecting'){ return; } if(states.current !== 'connected'){ $timeout(function(){ $scope.show_pusher_warning_alert = true; if(angular.isDefined($scope.current_interval)){ $interval.cancel($scope.current_interval); $scope.current_interval = undefined; } }, 3000); } if((!first_pusher_connection) & states.current === 'connected'){ $scope.show_pusher_warning_alert = false; window.location.reload(); } if(states.current === 'connected'){ first_pusher_connection = false; } }); if(! angular.isDefined($scope.channel)){ $scope.channel = $scope.pusher.subscribe(domain_name + '-auction-' + $scope.auction.id); } if(angular.isDefined($scope.channel)){ $scope.channel.bind('pause', function(){ window.location.reload(); return; }); } } $scope.update_item($scope.item); $scope.softCloseGroupPusherUpdates(); if(realtime & enable_ajax_pusher_updates && (! is_auction_liveonline) && (! is_liveonline_online) && parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time){ $scope.watchItemsClosing(); } //subscribe to reopen live auction pusher event if(!angular.isDefined($scope.pusher) & typeof (pusher_api_key) !== 'undefined' && enable_ajax_pusher_updates && is_liveonline_online){ $scope.pusher = new Pusher(pusher_api_key, {cluster: pusher_cluster, disableStats: true, pong_timeout: 20000, activity_timeout: 10000}); $scope.auction_reopen_channel = $scope.pusher.subscribe(domain_name + '-reopen_auction-' + $scope.auction.id); $scope.auction_reopen_channel.bind('reopen_auction', function(){ $scope.$apply(function(){ smodal('', 'This Auction has been reopened.', true, '', function (){ window.location.reload(); }, true, function (){ window.location.reload(); }, 0, ''); }); }); } }; // soft close group trigers $scope.softCloseGroupPusherUpdates = function(){ if(realtime & parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time && ! angular.isDefined($scope.softCloseChannel)){ // Subscribe to soft close pusher API channel $scope.softCloseChannel = $scope.pusher.subscribe(domain_name + '-softclosegroup-' + $scope.item.groupid); } if(realtime & parseInt($scope.auction.starts, 10) <= $scope.current_time && parseInt($scope.item.end_time, 10) > $scope.current_time && angular.isDefined($scope.softCloseChannel)){ $scope.softCloseChannel.bind('softclose', function(data){ $scope.$apply(function(){ // var item = jQuery.extend(true, $scope.item, data.items); // for(var indx2 = 0; indx2 < data.items.length; indx2++){ // if($scope.item.groupid === item[indx2].groupid){ // $scope.item.end_time = item[indx2].end_time; // $scope.item.bidding_extended = item[indx2].bidding_extended; // $scope.update_item($scope.item); // break; // } // } if($scope.item.groupid == data.groupid){ $scope.item.end_time = data.end_time; $scope.item.bidding_extended = data.bidding_extended; $scope.update_item($scope.item, true); } }); }); } }; // Item remaining time clear interval function $scope.removeInterval = function(item){ if(angular.isDefined(item.timeout)){ $timeout.cancel(item.timeout); item.timeout = undefined; } }; // Destroy scope members and API connections $scope.destroy = function(){ if(angular.isDefined($scope.current_interval)){ $interval.cancel($scope.current_interval); $scope.current_interval = undefined; } if(angular.isDefined($scope.item.channel)){ $scope.pusher.unsubscribe(domain_name + '-item-' + $scope.item.id); $scope.item.channel = undefined; } if(angular.isDefined($scope.watch_interval)){ $interval.cancel($scope.watch_interval); $scope.watch_interval = undefined; } }; // Scope event triggered by angular JS $scope.$on('$destroy', function (){ $scope.destroy(); }); // Destroy everything when item is going to close if($scope.item.end_time > $scope.current_time){ var timeout = parseInt($scope.item.end_time - $scope.current_time + 15*60)*1000; if(timeout >= 2147483647) timeout = 2147483647; $timeout(function (){ $scope.destroy(); if($scope.pusher){ $scope.pusher.disconnect(); $scope.show_pusher_warning_alert = false; } }, timeout); } // If auction is closed destory everything if($scope.item.end_time <= $scope.current_time){ $scope.destroy(); if($scope.pusher){ $scope.pusher.disconnect(); $scope.show_pusher_warning_alert = false; } } $scope.refreshPage = function (){ location.reload(); }; // Item initialization and update function $scope.update_item = function(item, ignorePusher){ if(typeof(ignorePusher) === 'undefined'){ ignorePusher = false; } item.end_time = parseInt(item.end_time, 10); item.start_time = parseInt(item.start_time, 10); item.quantity = parseInt(item.quantity, 10); item.high_bidder = parseInt(item.high_bidder, 10); item.buy_now = parseFloat(item.buy_now); item.current_bid = parseFloat(item.current_bid); item.minimum_bid = parseFloat(item.minimum_bid); // Item box highlighting code if(! angular.isDefined(item.highlight)){ item.highlight = ''; } item.url = $filter('slugify')(item.title, item.auction_id, item.id); if($scope.disable_bid_history & $scope.item.start_time > 0 && $scope.item.start_time <= $scope.current_time && $scope.item.end_time <= $scope.current_time && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } item.time_not_set = false; if(item.end_time <= 0 || item.start_time <= 0){ item.time_not_set = true; } $scope.item.buy_now_display = 'Buy Now' + ' ' + $filter('currency')(item.buy_now, '$', decimals) + (item.quantity > 1 ? ' x ' + item.quantity : ''); minbid_quantity = toCurrency(item.minimum_bid, decimals, '$') + (item.quantity > 1 ? (' x ' + item.quantity) : ''); proxy_quantity = toCurrency(item.proxy_bid ? item.proxy_bid : '0', decimals, '$') + (item.quantity > 1 ? (' x ' + item.quantity) : ''); current_bid_quantity = toCurrency(item.current_bid ? item.current_bid : '0', decimals, '$') + (item.quantity > 1 ? (' x ' + item.quantity) : ''); item.proxy_title = " You can enter a new max bid at any time by entering a bid greater than your current high bid. A max bid would make it more difficult for others to outbid you.A max bid is the highest amount you are willing to pay for an auction item.In response to other bids, the auction system will automatically increase your bid in the smallest increment possible (up to your max bid amount) in order to maintain your lead position. To get a max bid you simply enter the maximum amount you are willing to pay into the bid form just as you would any other bid. If your bid is more than one bidding increment above the current high bid you will get a max bid unless another bidder has a max bid in place that is higher than the amount you enter. At the end of the auction, the winning bidder pays only the lowest winning bid possible. That means that you can win an auction item at a price less than your max bid amount.Your max bid amount is kept confidential from other bidders.You can lower or delete a max bid by entering a lower amount.Note: After watching hundreds of auctions and talking to thousands of bidders, we think using max bids in your bidding strategy works best for most people. It eliminates some of the pressure and reduces the risk of "sniping", where other biddersslip in slightly higher bids in the last seconds of bidding."; // Item bid status tooltip logic if(item.high_bidder === $scope.current_user & ((! item.has_reserve) || item.reserve_met)){ if(item.proxy_bid > 0){ item.bid_button_value = lang.adjust_proxy_btn; item.bid_button_title = lang.can_adjust_proxy; item.proxy_title = " You now have a max bid. You can raise or lower your max bid at any time by entering a new amount. If you wish to remove your max bid you can do so by entering an amount equal to the current bid into the bid form."; } else{ item.bid_button_value = lang.add_proxy_btn; item.bid_button_title = lang.can_add_proxy; } } else{ item.bid_button_value = lang.place_bid_btn; item.bid_button_title = lang.can_bid.replace(new RegExp('%s', 'g'), ''+minbid_quantity); } item.reserve_price_display = ((item.reserve_option != 'none') ? ((! item.reserve_met) ? ((item.reserve_option == 'standard') ? 'There is a reserve price that has NOT been met.' : 'Pending Approval' ): ((item.reserve_option == 'standard') ? 'The reserve price HAS been met.' : 'Sells to High Bidder' ) ): ''); item.status = ''; item.status_text = ''; item.bid_status_text = ''; if(has_bids_in_item > 0 & item.high_bidder === $scope.current_user){ item.status = 'winning'; item.bid_status_text = lang.winning_status; } else if(has_bids_in_item > 0){ item.status = 'losing'; item.bid_status_text = lang.losing_status; } if((item.start_time > 0 & item.start_time <= $scope.current_time && item.end_time <= $scope.current_time && $scope.show_bid_history) || (item.first_to_reserve == 1 && item.has_reserve && item.reserve_met)){ item.status_text = 'Bidding is closed.'; if($scope.show_bid_history & ($scope.is_admin || ! ($scope.enable_blind_bidding && $scope.auction.blind_bidding == 1))){ item.status_text += 'High Bid:' + current_bid_quantity + ''; } } else if(item.start_time > 0 & item.start_time > $scope.current_time){ item.status_text = 'Bidding on this item starts Wednesday, April 5, 2023 at 04:00:00 pm CT.'; if(item.quantity > 1){ item.status_text += 'This is a per unit bid so the total amount charged will be the the high bid x 1.'; } } else if(item.start_time === 0 || item.end_time === 0){ item.status_text = 'Dates to be announced'; } if(typeof(origin) !== 'undefined' & typeof(destination) !== 'undefined'){ $('.dvprogress').show(); setTimeout(function(){ if(typeof(google) !== 'undefined'){ var service = new google.maps.DistanceMatrixService; service.getDistanceMatrix({ origins: [origin], destinations: [destination], travelMode: google.maps.TravelMode.DRIVING, unitSystem: google.maps.UnitSystem.IMPERIAL, avoidHighways: false, avoidTolls: false }, function(response, status){ $scope.user_item_distance = 'Not Available.'; if(status === google.maps.DistanceMatrixStatus.OK){ var originList = response.originAddresses; for(var i = 0; i < originList.length; i++){ var results = response.rows[i].elements; if(results[0].status !== 'NOT_FOUND' & results[0].status !== 'ZERO_RESULTS'){ for(var j = 0; j < results.length; j++){ if(item.end_time > $scope.current_time){ $scope.user_item_distance = 'Approximately {distance} miles from your registered address'.replace('{distance}', results[j].distance.text.replace(' mi', '')); } else{ $scope.$apply(function (){ $scope.user_item_distance = 'Approximately {distance} miles from your registered address'.replace('{distance}', results[j].distance.text.replace(' mi', '')); }); } } } } } }); } }, 500); } // Item more info tooltip logic item.auction_item_location = ''; address_match = false; if($scope.auction.auction_group_type !== 11 & $scope.auction.auction_group_type !== 12 && $scope.auction.auction_group_type !== 13){ if(item.mapping_city === $scope.auction.city && item.mapping_address === $scope.auction.address && item.mapping_zip === $scope.auction.zip){ address_match = true; } if(! address_match & item.mapping_city && item.state_abbreviation){ address = ''; var display_address = ''; if(item.mapping_address){ address += item.mapping_address + ', '; } address += item.mapping_city + ', ' + item.state_abbreviation; if(item.mapping_zip){ address += ' ' + item.mapping_zip; } if(show_county_info){ if(item.mapping_address){ display_address += item.mapping_address + ', '; } if(typeof(item.mapping_county) !== 'undefined' & item.mapping_county !== ''){ display_address += item.mapping_city + ', ' + item.mapping_county + ', ' + item.state_abbreviation; } else{ display_address += item.mapping_city + ', ' + item.state_abbreviation; } if(item.mapping_zip){ display_address += ' ' + item.mapping_zip; } } var allowAddressCoordinates = true; item.auction_item_location = ''+ ((show_county_info) ? display_address: endereço) +''; } } // Inscrever elemento no canal of element as API use if(realtime && item.start_time <= $scope.current_time && item.end_time > $scope.current_time && !ignorePusher && ! angle.isDefined(item.channel) ) { Artikel. canal = $scope.pusher.subscribe(domain_name + '-item-' + item.id); } // Vincular oder Element zur Funktion des Chamada-Retors zum Kanal der Element-API zum Empujador if(realtime && item.start_time <= $scope.current_time && item.end_time > $scope.current_time && !ignorePusher && angle.isDefined( item .Kanal)){ Artikel. channel.bind('oferta', function (datas){ $scope.$apply(function (){ if(! angle.isDefined(data.item.result)){ data.item.result = {}; } data. item.result.current_user_winner = parseInt(data.item.high_bidder, 10) === $scope.current_user; if(data.item.result.current_user_winner){ item.highlight = 'highlightg'; $timeout(function (){ item.highlight = ''; }, 3000); } else{ item.highlight = 'highlightr'; $timeout(function (){ item.highlight = ''; }, 3000); } item = jQuery.extend(true , item, data.item); if(! data.item.result.current_user_winner){ item.proxy_bid = 0; } $('#bid-history a.refresh').show(); $('#item- info .flash_error, #item-info .flash_msg').remove(); $scope.update_item(item, true); }); var newText = $('#tbl-detalles label.tipped').attr('title '); if(typeof (newText) !== 'indefinido'){ var trigger = $('#tbl-detalles label.tipped'); trigger.removeData('información sobre herramientas').unbind(); trigger. attr("título", nuevoTexto); trigger.tooltip(tip_conf).dynamic(); } }); item.channel.bind('pusher:subscription_succeeded', function(data){ $scope.getPusherAJAX(); }); } }; $scope.watchItemsClosing = function (){ if(!angular.isDefined($scope.watch_interval)){ $scope.watch_interval = $interval(function (){ if(!angular.isDefined($scope.item.closed)) { $scope.item.rtime = $scope.item.end_time - $scope.current_time; if($scope.item.rtime <= 10){ $scope.getPusherAJAX(); } } }, 5000); } }; $scope.getPusherAJAX = function(){ var path = '/aucbeat/pusher/' + $scope.auction.id + '-' + $scope.item.id + '.json'; $.get(ruta, função (dados){ if(angular.isDefined(data.item)){ data.item.current_bid = parseFloat(data.item.current_bid); $scope.item.current_bid = parseFloat($scope. item.current_bid); if(data.item.current_bid > $scope.item.current_bid){ $scope.$apply(function (){ if(! angle.isDefined(data.item.result)){ data.item. resultado = {}; } data.item.result.current_user_winner = parseInt(data.item.high_bidder, 10) === $scope.current_user; if(data.item.result.current_user_winner){ $scope.item.highlight = 'highlightg'; $timeout(função (){ $scope.item.highlight = ''; }, 3000); } else{ $scope.item.highlight = 'highlightr'; $timeout(function (){ $scope. item.highlight = ''; }, 3000); } $scope.item = jQuery.extend(true, $scope.item, data.item); $('#bid-history a.refresh').show() ; $('#item-info .flash_error, #item-info .flash_msg').remove(); $scope.update_item($scope.item, true); }); var newText = $('#tbl-detalles label.tipped').attr('title'); if(typeof (newText) !== 'undefined'){ var trigger = $('#tbl-detalles label.tipped'); trigger.removeData('informações sobre ferramentas').unbind(); trigger.attr("titel", nuevoTexto); trigger.tooltip(tip_conf).dynamic(); } }else if($scope.item.rtime <-5){ $scope.item.closed = true; if($scope.disable_bid_history && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } } } Else if($scope.item.rtime <-5){ $scope.item.closed = true; if($scope.disable_bid_history && (angular.isDefined($scope.auction.hide_bidhistory_after_sale) && parseInt($scope.auction.hide_bidhistory_after_sale))){ $scope.show_bid_history = false; } } }); }; // Initialisierung der Daten von Elementen $scope.initData(); var destroyPusher = function (){ $scope.destroy(); if($scope.pusher){ $scope.pusher.disconnect(); $scope.show_pusher_warning_alert = falsch; } }; if(window.addEventListener){ window.addEventListener("Antes de Baixar", DestroyPusher); } Else{ window.attachEvent("Antes de Baixar", DestroyPusher); } angle.element(documento).ready(function(){ initTips(); setupInfoDiv(); setTimeout(initImgFlipper, 200); }); $('#elemento-envoltorio').show(); clearTimeout(jswarntimeout); $('#jsfmsg') img, ialtura){ var targetH = 0; if (img.data ('ratio') <1) { targetH = iheight; var márgenes = ((iflip_width - (iheight*img.data('ratio')))/2)+'px'; img.css({izquierda:márgenes, direita:márgenes}); } sonst targetH = iflip_width/img.data('ratio'); var itop = 0; if(targetH <iheight){ itop = (iheight - targetH)/2; } img.css({'ancho': 'automático', 'ancho máximo' : '100%', 'altura': (objetivoH > ialtura ? ialtura : objetivoH)+'px', 'superior': itop+'px ' });};var imgFlip = function(imgs, izquierda){ timg = $('div#elemento-imagen div img.a'); var pa = timg.parent(); pa.find('img').stop(verdadero, verdadero); var cimg = pa.find('img.a'); var nimg = cimg; var inx = 1; if(izquierda){ inx = ((cimg.data('inx') === 0) ? imgs.length : cimg.data('inx')) - 1; cimg.después(''); nimg = cimg.next('img').data('inx', inx).data('ratio', imgs[inx].ratio); cimg.css({posição:'absoluta', zIndex:5, direita: '-2px'}).css('izquierda', ''); setImgHeight (nimg, iflip_height); nimg.css({ancho:'0px', posição:'absoluta', izquierda:'3px', zIndex:10}).css('derecha', '').addClass('a'); preimg = nova imagem(); preimg.src = imgs[((inx === 0) ? imgs.length : inx) - 1].url; cimg.animate({ancho:'0px', direita:'-2px'}, iflipslide_speed, iflipanim_type); var targetW = (Math.floor((nimg.outerHeight()) >= Math.floor(iflip_height)) ? (iflip_height*nimg.data('ratio')) : iflip_width); var targetL = (iflip_width - targetW)/2; nimg.animate({width:targetW+'px',left:(targetL+3)+'px',right:targetL+'px'}, iflipslide_speed, iflipanim_type, function(){cimg.remove();}); } Else{ inx = (cimg.data('inx') + 1) % imgs.length; cimg.antes('
'); nimg = cimg.prev('img').data('inx', inx).data('ratio', imgs[inx].ratio); cimg.css({position:'absolute', zIndex:5, left: '3px'}); setImgHeight (nimg, iflip_height); nimg.css({largura:'0px', posição:'absoluto', direita:'-2px', zIndex:10}).css('esquerda', '').addClass('a'); preimg = new Imagem(); preimg.src = imgs[(inx+1) %imgs.length].url; cimg.animate({largura: '0px', esquerda: '3px'}, iflipslide_speed, iflipanim_type); var targetW = (Math.floor((nimg.outerHeight()) >= Math.floor(iflip_height)) ? (iflip_height*nimg.data('ratio')) : iflip_width); var targetL = (iflip_width - targetW)/2; nimg.animate({width:targetW+'px', esquerda:(targetL+3), direita:(targetL)+'px'}, iflipslide_speed, iflipanim_type, function(){cimg.remove();}); } falsch zurückgeben ;}; var setItemImageCHeight = function (){ var img_container = $('div#item-image div'); iflip_width = img_container.outerWidth (true) - 6; slip_height = iflip_width*3/4; img_container.height (iflip_height); timg = img_container.find('img'); time.attr('src', time.data('ssrc')); img_container.show(); setImgHeight(img_container.find('img'), iflip_height); img_container.parent().find('span').css({height:(iflip_height+6)+'px','line-height':(iflip_height+6)+'px'});};var initImgFlipper = Funktion () { setItemImageCHeight (); $(janela).resize(setItemImageCHeight); var Bilder = []; $('#images,#image-details').find('a').each(function(){ var src = $(this); imgs.push({url:src.attr('href'), ratio:src.data('Verhältnis')}); }); var timg = $('div#elemento-imagem div img.a'); timg.data('carregado', 1); timg.data ('inx', 0); var pdv = timg.parent().parent(); if(imgs.length > 1){ var iflip_height = pdf.find('div')[0].clientHeight-2; setImgHeight (img, iflip_height); preimg = new Imagem(); preimg.src = imgs[1].url; pdf.append('‹›'); pdv.find('span').css({altura:(iflip_height+6)+'px','line-height':(iflip_height+6)+'px'}).click(function(ev){ ev .stopPropagation(); imgFlip(imgs, $(this).is('.left')); return false; }); }};
FAQs
What does a beep mean on a First Alert smoke and carbon monoxide alarm? ›
Different Types of Beeps and Chirps:
4 Beeps and a Pause: EMERGENCY. This means that carbon monoxide has been detected in the area, you should move to fresh air and call 9-1-1. 1 Beep Every Minute: Low Battery. It is time to replace the batteries in your carbon monoxide detector. 5 Beeps Every Minute: End of Life.
3 Beeps and a Pause: EMERGENCY. This type of chirp means that smoke has been detected in your home. You and your family need to evacuate and call 9-1-1 once safely outside.
How to tell the difference between a smoke detector and a carbon monoxide detector? ›Here's a simple guide: Smoke alarms alert you with three beeps in a row. Carbon monoxide alarms alert you with four beeps.
How do you test First Alert smoke and carbon monoxide detectors? ›It is important to test your detectors monthly to ensure they are working properly. To test your CO alarms, press and hold the test button on the alarm. The detector will sound 4 beeps, a pause, then 4 beeps for 5-6 seconds.
What do 5 beeps on First Alert smoke detector mean? ›Five chirps indicate that the alarm is at its end of life (EOL). This should not happen for about 5 years after the date of manufacture.
What does 5 beeps on smoke detector mean? ›5 chirps (about 1x per minute): End-of-life (EOL) chirp
Use the Test/Silence button to hush the warning. After about 2 days, the warning will resume. After ~2-3 weeks, the warning cannot be silenced. Replace with a new alarm as soon as possible.
If the alarm continues to go off and no smoke is present, the cause may be one of the following: There may be insufficient battery power, try new batteries. Problems with voltage or insufficient electrical power (brown out) may cause a continuous weak sounding alarm.
What are two warning signs of carbon monoxide poisoning? ›What are the symptoms of CO poisoning? The most common symptoms of CO poisoning are headache, dizziness, weakness, upset stomach, vomiting, chest pain, and confusion. CO symptoms are often described as “flu-like.” If you breathe in a lot of CO it can make you pass out or kill you.
Why is my First Alert smoke and carbon monoxide detector going off? ›The detector has a low battery and they need to be replaced. The detector has reached its end-of-life and the alarm itself needs to be replaced. Elevated levels of carbon monoxide gas have been detected.
Why did my fire alarm randomly go off in the middle of the night? ›We typically attribute smoke detector false alarms at night to one of two factors: low battery power and a drop in the home's air temperature, or an environmental factor such as high humidity, steam, or smoke particles in the air.
Will carbon monoxide set off a smoke detector? ›
Most of the time, when one of these detectors sounds an alarm, the other one won't go off as well. That's because you'll often have smoke present with no carbon monoxide present, or vice versa. However, the alarms in both types of detector could sound at the same time for some fires.
Can carbon monoxide be detected in smoke alarms? ›Nowadays, dual function – smoke and carbon monoxide detectors – are available. So, yes, some smoke detectors can detect carbon monoxide.
How can I test my smoke detector without the test button? ›Test the smoke sensor using real smoke.
To do this, light two or three matches, and hold them together a few feet underneath the detector. The smoke from the matches should cause the alarm to sound if the detector is functioning properly. If it doesn't sound, replace the detector immediately.
First Alert and BRK alarms have a power indicator light to show you that your alarm is receiving power. Some alarms have a red or green light that blinks every few minutes, while other models blink rapidly or shine a solid light. The light isn't a cause for concern unless the alarm is also beeping or chirping.
What does red light mean on First Alert carbon monoxide detector? ›On First Alert® carbon monoxide alarms, the red light flashes to show the Carbon Monoxide Alarm is properly receiving battery power. If you do not see the red light flashing, change the batteries in the alarm immediately.
How long do First Alert smoke detectors last? ›Smoke alarms should be replaced 10 years from the date of manufacture. Combo smoke/CO alarms should be replaced after 5-7 years (depending on the model). Put the alarm back on the ceiling or wall if it is less than 10 years old.
Will taking the battery out of a smoke detector stop the beeping? ›A Checklist for Stopping the Chirping
Remove the unit from the ceiling and remove its battery, then hold the test button for 15 seconds. Next, replace the battery. If the unit continues to beep, clean it using the methods we outlined above.
Beeps Once Every 30 Seconds or Minute
Most often, a single smoke alarm beep every 30 seconds or one-minute signals a low battery. It could also mean you put the batteries in the wrong direction or that the battery drawer is still partly open.
3 beeps indicate that the detector is malfunctioning. You may need to relocate the detector or test its functionality. And if it does 4 beeps and a pause, that indicates an emergency. Carbon monoxide has been detected in your area, and you should get away from that area to fresh air. Also, you need to call 911.
Will a carbon monoxide detector keep beeping if there's carbon monoxide? ›A CO alarm that beeps continuously without stopping could indicate that carbon monoxide is present. If you your CO alarm is sounding continuously and you have signs of CO poisoning such as dizziness, headache, vomiting or flu like symptoms, find fresh air and call 9-1-1 immediately.
Do carbon monoxide detectors beep when the battery is low? ›
Check Your CO Detector
If your detector is low on battery, you will likely hear a short chirp every minute. To warn of dangerous CO levels, most detectors will beep 4 or 5 times in a row about every 4 seconds. Do not mistake dangerous levels of poisonous gas for a detector with low battery!
In domestic properties, your CO alarm can be triggered by any fuel burning appliance such as gas cookers, boilers and ovens. All of these appliances give off small traces of CO, but the levels can rise slightly when adequate ventilation isn't provided, or the venting is blocked or clogged by dust.
What can cause smoke alarms to randomly go off? ›- Smoke from burnt food or cooking.
- Fireplace smoke or outdoor campfires blowing indoors.
- Steam and High humidity.
- Low battery life.
- Excess Dust or Debris.
- Chemicals.
- Bugs.
- End of life.
1 beep every minute: This means that the alarm has low batteries and you should replace them. 3 beeps every minute: This means the alarm has encountered a malfunction and needs replacement. 5 beeps every minute: This means your alarm has reached the end of its life and needs to be replaced with a new alarm.
How long does carbon monoxide poisoning take to show symptoms? ›You may lose balance, vision and memory and even consciousness. This can happen within 2 hours if there's a lot of carbon monoxide in the air. The smaller an animal or person is, the faster they'll be affected. Pets are often the first to show symptoms.
Can you be slowly poisoned by carbon monoxide? ›Carbon monoxide (CO) poisoning happens when you breathe in fumes that contain CO. You can get very sick or even die if you breathe high levels of CO for even a few minutes.
How long does it take to get carbon monoxide poisoning? ›High concentrations of carbon monoxide kill in less than five minutes. At low concentrations it will require a longer period of time to affect the body. Exceeding the EPA concentration of 9 ppm for more than 8 hours is suspected to produce adverse health affects in persons at risk.
Should I call 9-1-1 if my carbon monoxide alarm goes off? ›Call 911 immediately and report that the alarm has gone off. Do not assume it is safe to reenter the home when the alarm stops. When you open windows and doors, it helps diminish the amount of carbon monoxide in the air, but the source may still be producing the gas.
Should my carbon monoxide detector have a green light? ›If the red or green light on your CO detector is illuminated, that's a sign that the unit has power. If the light is off, replace the batteries and follow the reset steps.
What to do if house alarm goes off in middle of the night? ›Go to your safe place
The best plan is to go to a room that you have designated as a “safe place.” This is a room that is as far away as possible from where a burglar could enter. It is a plus if you can lock the door, but if not, at least make it a room that you can easily and safely stand watch.
Why does my carbon monoxide detector beep 3 times then stop? ›
Three beeps mean there is a malfunction with your carbon monoxide alarm. If you're hearing three beeps every fifteen minutes, there is a malfunction with your alarm. You should contact the manufacturer and get your alarm checked immediately. You need to always have a working carbon monoxide alarm for your safety.
How often do you need to change the battery in a smoke detector? ›Test smoke alarms every month by pressing their test buttons. If your alarms use regular batteries, swap in fresh batteries at least once a year. A “chirping” sound means that it's time to change batteries. Because alarm sensors wear out, replace each alarm at least every 10 years.
Will cracking a window help with carbon monoxide? ›Opening a window will slow carbon monoxide poisoning, but it likely won't stop it. There simply isn't enough airflow through most windows to get rid of the poisonous gas, and it could take between four and eight hours for the CO to dissipate entirely.
Can you just unplug the smoke and CO detector? ›Most people ask themselves, “can I remove a hardwired smoke detector?” The answer is you can! If you have to stop the hard-wired smoke detectors from beeping, you must unplug them from the clip and remove the battery.
What smoke detector do firemen recommend? ›A dual sensor alarm provides the best protection and for that reason it is recommended. There are alarms available that are multicriteria or intelligent alarms, what this means is they use many different sensors such as photoelectric, ionization, and heat along with an algorithm to detect a fire.
Do I need a smoke and carbon monoxide detector in every room? ›The NFPA recommends that you install a carbon monoxide alarm, like smoke alarms, on every level of your home, inside every bedroom, and outside each sleeping area. Make sure carbon monoxide detectors are also installed near attached garages in case a car is left running, and anywhere else the manufacturer recommends.
What the difference between a carbon monoxide detector and a smoke detector? ›Smoke alarms sound an alarm when they sense the presence of smoke particles in the air, while carbon monoxide detectors sound an alarm when toxic levels of the invisible and odorless gas are detected.
What if there is no green light on my smoke detector? ›The green light on my smoke alarm has gone out, what does this mean? The AC power has been interrupted. Check the circuit breaker and AC wiring to correct the problem.
Is there a silent smoke detector? ›The Signature SeriesSmoke Detector with Transmitter transmits to the Sidekick II Receiver, which will flash when it has been activated. Requires compatible receiver (see Accessories). This item will be shipped on Monday.
How do I make my smoke detector not detect smoke? ›Fortunately, it's easy to cover a smoke detector and prevent it from going off at an inopportune time. Just place a strip of painter's tape over the unit's sensor chamber, or wrap it up with a shower cap or plastic bag and secure it with a rubber band.
What does the red vs green light mean on a smoke detector? ›
You will notice two different lights on your smoke alarm: A steady green light shows the alarm is being powered. A red light that flashes once a minute shows the alarm is working.
Should carbon monoxide detector have red light? ›Do I have CO? On First Alert carbon monoxide alarms, the red light flashes to show the CO alarm is properly receiving battery power. If you do not see the red light flashing, change the batteries in the alarm immediately.
How do you tell if a smoke detector is a hidden camera? ›You can turn off the lights in the room and place your mobile camera over the smoke detector. If you come across any infrared lights on the screen, this could be because of the hidden camera. If there is a camera in the smoke detector, the light you will detect will either be a white colored light or a purple one.
Can a carbon monoxide detector go off for no reason? ›If a carbon monoxide detector becomes expired or its battery is low, this can cause its alarm to go off sporadically. Built up moisture in a bathroom or like areas can set off a carbon monoxide detector, carbon monoxide detectors should not be set up in areas where there is a tremendous amount of steam.
How do I fix my First Alert smoke detector from beeping? ›Clear Residual Charge to Stop the Chirp
Remove the alarm from your ceiling or wall. Open the cover and take out the battery. Press and hold the test button for 15-30 seconds. This will fully reset the smoke alarm and drain any charge left inside.
Why does my smoke alarm randomly chirp? There can be a few factors at play here. A low battery can be responsible as the smoke detector is alerting you that it's time for a replacement. It can also be caused by batteries being placed incorrectly in the alarm.
How do I get my First Alert carbon monoxide detector to stop beeping? ›All First Alert Alarms come with a Test Button. With the battery removed from the unit, press and hold this button for 30 seconds. This will fully reset the alarm, removing the residual charge of the previous battery.
Why did my carbon monoxide detector beep and then stop? ›This meaning is probably the most self-explanatory. When your carbon monoxide detector chirps 4 times in a row and pauses, this means it has detected unsafe levels of carbon monoxide. This means your entire household should evacuate immediately and seek fresh air.
Why is the green light blinking on my First Alert smoke alarm? ›A flashing green light is a normal part of the power up cycle. Any time there is a power outage, brownout, surge or other problem with the power, the alarm goes through a power up cycle. The flashing on your plug-in carbon monoxide alarm should stop after 5 minutes, then the light will stay a steady green.
What can set off a carbon monoxide detector? ›In domestic properties, your CO alarm can be triggered by any fuel burning appliance such as gas cookers, boilers and ovens. All of these appliances give off small traces of CO, but the levels can rise slightly when adequate ventilation isn't provided, or the venting is blocked or clogged by dust.
Why is the red light flashing on my smoke detector after changing battery? ›
Your alarm manufacturer may have included a blinking red light to let you know it's time to test the alarm again. The Batteries are Low: Usually accompanied by a loud beep, a blinking red light could mean the batteries in the unit are low. Consider adding fresh batteries and running a test to make sure it's working.
Why did my smoke alarm sound for no reason? ›The most likely reason smoke detectors go off unexpectedly is that people aren't changing the batteries in them often enough. In most sensors you might think of, the strength of the signal goes up when they detect what they're supposed to.
Why is my smoke detector beeping randomly middle of night? ›This battery characteristic can cause a smoke alarm to enter the low battery chirp mode when air temperatures drop. Most homes are the coolest between 2 a.m. and 6 a.m. That's why the alarm may sound a low-battery chirp in the middle of the night, and then stop when the home warms up a few degrees.
How do you stop a false carbon monoxide detector? ›First, look for a button called 'silence' or 'reset'. Hold this button down for 10 or more seconds. Release the button, and the LED lights should blink or turn back on. Your unit might also let out a singular beep.
What does a red light on a carbon monoxide detector mean? ›Why does the red light flash on my carbon monoxide alarm? Do I have CO? On First Alert carbon monoxide alarms, the red light flashes to show the CO alarm is properly receiving battery power. If you do not see the red light flashing, change the batteries in the alarm immediately.
What does the green light on my carbon monoxide detector mean? ›If the red or green light on your CO detector is illuminated, that's a sign that the unit has power. If the light is off, replace the batteries and follow the reset steps.
Do carbon monoxide detectors give false alarms? ›There are several reasons you might get a false alarm from your CO detector. Your CO detector needs to be replaced. Detectors can malfunction near the end of their life span. Your system detects a carbon monoxide leak from one of your neighbor's appliances.