'); if(!WVM.IS_STREAMING){ $videoEl.append('' + '' + ''); } setTimeout(function(){ $('.mute-overlay').on('touchstart click', function(e){ if(e.handled === false) return; e.stopPropagation(); e.preventDefault(); e.handled = true; player.muted(false); //console.log("volumee " + WVM.activePlayer.volume()); $(this).hide(); $(this).css('display', 'none'); var currentTime = player.currentTime(); if(currentTime 0){ if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); //console.log("container height: " + WVM.CONTAINER_HEIGHT); $(window).on( "resize", function() { if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); console.log("container height: " + WVM.CONTAINER_HEIGHT); }); //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); $(window).on( "scroll", function() { if(!WVM.IS_FLOATING){ if(deviceName == 'desktop'){ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); }else{ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId + " .hlsvideo-wrapper").height() + $('#media-container-' + videoId + " .now-playing-container").height(); } } //var top = $('#media-container-' + videoId).offset().top; var offset = WVM.VIDEO_TOP + (WVM.VIDEO_HEIGHT / 2); var offsetBack = WVM.VIDEO_TOP; var changed = false; //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); //console.log("scrolltop " + $(window).scrollTop()); //only float if playing var isPlaying = WVM['player_state' + videoId]['IS_PLAYING'] || WVM['player_state' + videoId]['AD_IS_PLAYING']; if(isPlaying){ $('.vjs-loading-spinner').hide(); } var offsetFloatAd = 99999999; if(deviceName == 'desktop' && $('#float_anchor').length > 0){ offsetFloatAd = $('#float_anchor').offset().top - WVM.VIDEO_HEIGHT; //console.log("float anchor offset top " + offsetFloatAd); } if($(window).scrollTop() > offset && isPlaying && !WVM['player_state' + videoId]['CANCEL_FLOATING']){ $('#media-placeholder-' + videoId).height(WVM.CONTAINER_HEIGHT); $('#media-placeholder-' + videoId).css('display', 'block'); if(!WVM.IS_FLOATING){ changed = true; } WVM.IS_FLOATING = true; $('#media-container-' + videoId).addClass('floating-video'); var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(sWidth > 900 && WADS.IS_STICKING){ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky'); } else if(WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky-noad'); } } else if(!WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).removeClass('desktop-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky-noad'); } } //set right var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(deviceName == 'desktop' || sWidth > 900){ var leftPos2 = $('aside').get(0).getBoundingClientRect().left; var leftPos = $('aside').offset().left ; $('#media-container-' + videoId).css('left', leftPos + "px"); var newWidth = Math.floor(sWidth / 3.5); $('#media-container-' + videoId).css('width', newWidth + "px"); } else{ $('#media-container-' + videoId).css('width', "100% !important"); $('#media-container-' + videoId + ' .now-playing-container').css('display', 'block'); $('#media-container-' + videoId + ' .next-dropdown-accordion').css('display', 'block'); } //floating-video $('#media-container-' + videoId + " " + '.page-carousel-wrapper').hide(); setTimeout(function(){ var hWrapper = $('.floating-video .hlsvideo-wrapper').height(); var npWidth = $('.floating-video .now-playing-container').height(); var ndWidth = $('.floating-video .next-dropdown-header').height() + 20; var scrollerHeight = sHeight - (hWrapper + npWidth + ndWidth); scrollerHeight = 180; //scrollerHeight = parseInt(scrollerHeight * 0.5); if(WVM.device_name == 'desktop'){ $('#media-container-' + videoId + " " + " .mobile-list-videos").height(scrollerHeight); } }, 100); }else if($(window).scrollTop() 0){ var container = document.querySelector('#page-carousel-' + fullVideoId); imagesLoaded( container, function() { var screenWidth = window.innerWidth || document.documentElement.clientWidth; if(screenWidth > 850){ WVM.IS_DESKTOP = true; $('#page-carousel-' + fullVideoId + ' .page-carousel-lg-slides').css('display', 'block'); WVM['player_settings' + fullVideoId].slider = $('#page-carousel-' + fullVideoId).bxSlider({ maxSlides: 4, minSlides: 4, slideWidth: 305, infiniteLoop: false, hideControlOnEnd: true, useCSS: true, pager: false, slideMargin: 15, moveSlides: 1, nextText: '', prevText: '' }); }else{ WVM.IS_DESKTOP = false; $('.page-carousel-wrapper').css('display', 'block'); } }); } }; WVM.setupToggleButton = function(fullVideoId, player){ if($('.nextplay-switch-' + fullVideoId).length > 0){ new DG.OnOffSwitchAuto({ cls:'.nextplay-switch-' + fullVideoId, height: 24, trackColorOn:'#F9F9F9', trackColorOff:'#222', textColorOn: '#222', textColorOff: '#222', textOn:'On', textOff:'Off', listener:function(name, checked){ var theVal = 1; if(!checked){ theVal = 0; } $.ajax({ url: '/ajax/update_autoplay_video/', data: { autoplay_on: theVal }, type: 'POST', dataType: 'json', success: function(data) { WVM['player_settings' + fullVideoId]['autoplay'] = checked; }, error : function(){ console.log("Error loading video"); } }); } }); } }; WVM.setupAccordionButton = function(fullVideoId){ var deviceName = 'desktop'; $('#next-dropdown-accordion-button-' + fullVideoId).on('click', function(){ if($(this).find('i').hasClass('fa-chevron-up')){ //hide $(this).find('i').removeClass('fa-chevron-up'); $(this).find('i').addClass('fa-chevron-down'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); } var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); //playerId, mediaId, fieldName var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //alert("Getting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }else{ //expand $(this).find('i').addClass('fa-chevron-up'); $(this).find('i').removeClass('fa-chevron-down'); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').css('display', 'block'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').css('display', 'block'); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); if(!WVM.player_state165675['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); if(!$('#media-container-' + fullVideoId).hasClass('floating-video')){ if(!WVM.player_state165675['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } } } $('#video-slider-nexttitle' + fullVideoId).css('display', 'none'); } }); var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; //console.log("current Video " + currVideoId); var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //console.log("setting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }; WVM.sendbeacon = function(action, nonInteraction, value, eventLabel) { var eventCategory = 'Video'; if (window.ga) { //console.log("sending action: " + action + " val: " + value + " label " + eventLabel); ga('send', 'event', { 'eventCategory': eventCategory, 'eventAction': action, 'eventLabel': eventLabel, 'eventValue': value, 'nonInteraction': nonInteraction }); } }; WVM.getNextPlaylistIndex = function(mediaId, returnArrayIndex){ var currId = null; if(mediaId == null){ return null; } for(var x =0; x 20){ if(fullDuration > 1 && ((fullDuration - fullCurrent) > 1) && !$('.vjs-loading-spinner').hasClass('badspinner')){ console.log("hiding spinner"); $('.vjs-loading-spinner').addClass('badspinner'); } } var duration_time = Math.floor(this.duration()); //this is a hack because the end video event is not firing... var current_time = Math.floor(this.currentTime()); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 10) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ if('desktop' == "iphone" && playerState.AD_ERROR){ console.log("skipped timeupdate end"); }else{ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } } if(!playerState.START_SENT){ WVM.sendbeacon('start', true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); playerState.START_SENT = true; } var currentTime, duration, percent, percentPlayed, _i; currentTime = Math.round(this.currentTime()); duration = Math.round(this.duration()); percentPlayed = Math.round(currentTime / duration * 100); for (percent = _i = 0; _i = percent && __indexOf.call(playerState['PERCENTS_TRACKED'], percent) 0) { playerState['PERCENTS_TRACKED'].push(percent); } } } }); //player.off('ended'); player.on('ended', function(){ console.log("ended"); playerState.IS_PLAYING = false; WVM.sendbeacon("complete", true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); }else{ console.log("Playlist complete (no more videos)"); } }); //player.off('adserror'); player.on('adserror', function(e){ //$('#ima-ad-container').remove(); WVM.lastAdRequest = new Date().getTime() / 1000; console.log(e); console.log("ads error"); var errMessage = e['data']['AdError']['l']; playerState.AD_IS_PLAYING = false; playerState.IS_PLAYING = false; // && errMessage == 'The VAST response document is empty.' if(!playerState.AD_ERROR){ var dTime = new Date().getTime(); WVM.firstPrerollTagUrl = WVM.getFirstPrerollUrl(); console.log("calling backup ad tag url: " + WVM.firstPrerollTagUrl); WVM.activePlayer.ima.changeAdTag(WVM.firstPrerollTagUrl + "?" + dTime); WVM.activePlayer.ima.requestAds(); //WVM.activePlayer.src({ // src: masterSrc, // type: 'video/mp4' //}); //WVM.firstPrerollTagUrl = ""; } playerState.AD_ERROR = true; }); //player.off('error'); player.on('error', function(event) { if (player.error().code === 4) { player.error(null); // clear out the old error player.options().sources.shift(); // drop the highest precedence source console.log("now doing src"); console.log(player.options().sources[0]); player.src(player.options().sources[0]); // retry return; } }); //player.off('volumechange'); player.on('volumechange', function(event) { console.log(event); var theHeight = $('#media-container-' + playerState.ORIGINAL_ID + ' .vjs-volume-level').css('height'); var cssVolume = 0; if(theHeight){ cssVolume = parseInt(theHeight.replace('%', '')); } var theVolume = player.volume(); if(theVolume > 0.0 || cssVolume > 0){ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'none'); }else{ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'block'); } }); WVM.reinitRawEvents(playerState.ORIGINAL_ID); setInterval(function(){ WVM.reinitRawEvents(playerState.ORIGINAL_ID); }, 2000); } if(!WVM.rawCompleteEvent){ WVM.rawCompleteEvent = function(e){ var playerState = WVM['player_state165675']; console.log("firing raw event due to all other events failing"); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } }; } if(!WVM.rawTimeupdateEvent){ WVM.rawTimeupdateEvent = function(e){ var playerState = WVM['player_state165675']; var rawVideoElem = document.getElementById('html5-video-' + playerState['ORIGINAL_ID'] + '_html5_api'); var fullCurrent = rawVideoElem.currentTime * 1000; var fullDuration = rawVideoElem.duration * 1000; var current_time = Math.floor(rawVideoElem.currentTime); console.log("raw timeupdate: " + fullCurrent + " out of " + fullDuration); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 50) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); if(newMediaId){ console.log("loading new video from rawtimeupdate"); WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } if(!$('.vjs-loading-spinner').hasClass('badspinner')){ $('.vjs-loading-spinner').addClass('badspinner') } }; } WVM.reinitRawEvents = function(playerId){ var playerState = WVM['player_state' + playerId]; var rawVideoElem = document.getElementById('html5-video-' + WVM['player_state' + playerId]['ORIGINAL_ID'] + '_html5_api'); //COMPLETE EENT if( WVM['player_state' + playerId].COMPLETE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawCompleteEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawCompleteEvent, false); //TIME UPDATE EVENT if( WVM['player_state' + playerId].TIMEUPDATE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawTimeupdateEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawTimeupdateEvent, false); WVM['player_state' + playerId].COMPLETE_EVENT = true; WVM['player_state' + playerId].TIMEUPDATE_EVENT = true; };
MADISON, Wis. (CBS 58) -- With students going back to social interactions at school, there's growing concern from school administrators teen vaping is becoming a problem -- again.
While the latest statistics show vaping among teens was at its lowest rate in four years, there are already signs from school administrators things are taking a turn.
"We started to see a reduction in the use, however during COVID we're seeing an upswing again," said Gregg Wieczorek, principal of Heartland Arrowhead and president of the National Principals Association.
In 2020, the National Youth Tobacco Survey found 1.8 million fewer teens using e-cigarettes compared to 2019. While it's encouraging news, Wieczorek and other superintendents are worried vaping this school year is already becoming an issue.
"We had about 80% of the students face-to-face last year and we saw a pretty significant uptick, along with the number of people getting caught. It was another problem we had to deal with," Wieczorek said.
For students who were not back in the classroom due to the pandemic, tobacco researchers believe online learning may have reduced vaping trends.
On the other hand, if parents were not at home, students could have easily got their hands on highly addictive e-cigarettes.
"We also know during this pandemic a lot of kids are really, really anxious," said Megan Piper, associate director of UW Center for Tobacco Research and Intervention. "And a lot of kids pick up nicotine products, e-cigarettes, to help them cope with the stress."
Vaping Prevention Efforts Pause During Pandemic
Shortly after the CDC began identifying Vitamin E Acetate as the culprit behind thousands of vaping illnesses that sent several Wisconsin teens to the hospital with significant lung damage, state efforts got underway in 2019 to education students about the dangers of these products.
School officials often credit prevention programs in helping curb the teen vaping epidemic, but once COVID-19 hit, these resources came to a halt.
That's because many districts were unable to invite guest speakers to their schools to talk about how nicotine can impact brain development that controls attention, learning, mood and impulse control.
"Until we get kids and parents to under the serious health issues, I think [vaping] will still be fad," said Mark Lichte, superintendent at Lake County School in Delafield.
Tobacco 21 Legislation
Lichte and other school officials are rallying behind an effort they believe will make it harder for students to access vaping products. It's often referred to as "Tobacco 21," a bill that would raise the age from 18 to 21 to buy tobacco products.
President Donald Trump in 2020 signed a bill that raised the federal tobacco age to 21, but Wisconsin is unable to enforce it because legislation has yet to pass to mirror federal law.
The legal purchasing age in Wisconsin for tobacco products remains at 18.
This resulted in law enforcement agencies caught off guard, and many were confused on which law to enforce.
"Until Wisconsin catches up and matches federal law, we're stuck enforcing what Wisconsin has at 18," said Grant County Sheriff Nate Dreckman. "We have issues doing compliance checks on businesses and relators because of this conflict."
A pair of lawmakers, Sen. Howard Marklein (R-Spring Green) and Rep. John Spiros (R-Marshfield), are once again reintroducing legislation to raise the tobacco purchasing age to 21 in Wisconsin.
The bipartisan bill never passed both chambers last year, but it wasn't because it lacked support. Instead, lawmakers said they simply ran out of time to get it done.
The hope is once it passes, law enforcement can start enforcing it and tobacco researchers believe it will have a tremendous impact on the number of vaping products in schools.
"If you have to be 21 to get a hold of it, that means the older kids in high school can't be buying it legally, and therefore distributing it through these informal pathways," said Piper.
In the meantime, school administrators and health experts will continue their efforts to deter teens from vaping.
"It's about preventing them from getting started, once they get started they can get hooked very quickly, said Wieczorek.
On Thursday, the Judiciary and Public Safety committee held a public hearing on the Tobacco 21 bill. The co-chairs of the committee and bill sponsors remain confident it will pass the Legislature with bipartisan support.
See the original post:
- Help 'on the way' for smokers who want to kick habit - ArabianBusiness.com [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- SRNT Urged To Include Tobacco Industry Scientists - Vaping Post [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- Products That Are Making the Cannabis Market Successful - Ohionewstime.com [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- NZ Vape Industry Concerned Shop Security Will Worsen Due to New Vape Bill - Vaping Post [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- Its OK To Break Up With Your Vape Over Text. Heres Why. - Mashable India [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- If Apple Made a Weed Vaporizor, the DaVinci IQC Would Be It - Gizmodo [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- A march against the ban of vape flavours is happening in Montreal - Cult MTL [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- The Legend and Lore of Vaping - EasternEye - Eastern Eye [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- Had enough smoke? Here's the lowdown on vaping as a smoke-free alternative for getting high - Pacific Northwest Inlander [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- Study Adds Evidence Linking Vaping to Short-term Lung Symptoms in Youth - AJMC.com Managed Markets Network [Last Updated On: August 22nd, 2021] [Originally Added On: August 22nd, 2021]
- Canadian Vaping Association: Proposed flavour ban ignores the underlying neglected state of mental health in youth - StreetInsider.com [Last Updated On: August 28th, 2021] [Originally Added On: August 28th, 2021]
- Vernon bans smoking pot, vaping in public spaces and schools - WTNH.com [Last Updated On: August 28th, 2021] [Originally Added On: August 28th, 2021]
- Vape Tour 2021 Arrives in Montreal - Yahoo Finance [Last Updated On: August 28th, 2021] [Originally Added On: August 28th, 2021]
- Vaping use remains about the same during COVID-19...locally - Paducah Sun [Last Updated On: August 28th, 2021] [Originally Added On: August 28th, 2021]
- Health experts call for action on e-cigarette packaging aimed at children - The Guardian [Last Updated On: August 30th, 2021] [Originally Added On: August 30th, 2021]
- Moorhead considers ban on flavored tobacco, vape juices - INFORUM [Last Updated On: August 30th, 2021] [Originally Added On: August 30th, 2021]
- Interested in vaping? Here's everything you need to know - T3 [Last Updated On: August 30th, 2021] [Originally Added On: August 30th, 2021]
- South Carolina's Proposed House Bill 3681 - Vaping Post [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- Parents warned of dangerous new vaping trend which led to teenager falling ill - The Mirror [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- The Woman Behind The Vape Brand That Became China's Largest in Three Years - Vaping Post [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- Stop the flavour ban: Rights4Vapers tour makes a stop in Windsor - CTV News Windsor [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- Proven Benefits Of CBD Vape Oil - Pennsylvanianewstoday.com [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- American Heart Association Launces New Campaign to Combat Teen Vaping - Vaping Post [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- From October, it will be all but impossible for most Australians to vape largely because of the homework police - ABC News [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- Experts Call for More Regulation of E-Cigarettes Ahead of Major FDA Decision - Gizmodo [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- Rubiner & Mendonca: Schools and Parents Alone Can't Stop Kids from Vaping. To Head Off This Epidemic, the FDA Must Ban All Flavored E-Cigarettes -... [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- FDA nears day of reckoning on e-cigarettes - POLITICO [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- FDA to decide fate of vape industry in US this week - fox13now.com [Last Updated On: September 8th, 2021] [Originally Added On: September 8th, 2021]
- The Financial Benefit of Smoking Cessation For The Homeless - Vaping Post [Last Updated On: September 14th, 2021] [Originally Added On: September 14th, 2021]
- Looking Into The Effects of Vaping on Reproductive Health - Vaping Post [Last Updated On: September 14th, 2021] [Originally Added On: September 14th, 2021]
- Survey: 20% of LSU students vape regularly or in social settings; only 14% have never vaped - The Reveille, LSU's student newspaper [Last Updated On: September 14th, 2021] [Originally Added On: September 14th, 2021]
- Study Reveals the Serious Health Concerns Behind Vaping - One Green Planet [Last Updated On: September 14th, 2021] [Originally Added On: September 14th, 2021]
- Vape Tour 2021 Arrives in the Greater Toronto Area - Yahoo Finance [Last Updated On: September 14th, 2021] [Originally Added On: September 14th, 2021]
- Since the FDA Has Not Approved Any Vaping Products, All of Them Are Now 'Subject to Enforcement Action' - Reason [Last Updated On: September 14th, 2021] [Originally Added On: September 14th, 2021]
- LAFD captain severely burned in downtown warehouse explosion sues vape shop, building owners - KTLA [Last Updated On: September 17th, 2021] [Originally Added On: September 17th, 2021]
- LA fire captain burned in explosion sues warehouse owners, vaping supply shop | TheHill - The Hill [Last Updated On: September 17th, 2021] [Originally Added On: September 17th, 2021]
- The Juuls reputation goes up in smoke in Move Fast & Vape Things - The A.V. Club [Last Updated On: September 17th, 2021] [Originally Added On: September 17th, 2021]
- Canadian Vaping Association: Academics caution that restrictive regulation has unintended consequences - GlobeNewswire [Last Updated On: September 17th, 2021] [Originally Added On: September 17th, 2021]
- COVID-19 credited with local rise in vaping - The Daily Universe - Universe.byu.edu [Last Updated On: September 17th, 2021] [Originally Added On: September 17th, 2021]
- TransLink to officially ban smoking and vaping with new rule, $150 fine | Urbanized - Daily Hive [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- The perfect way to wick your resistance coil - Vaping Post [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- Stream It Or Skip It: 'Move Fast & Vape Things' On Hulu, A Documentary About The Rapid Rise And Collapse of Juul - Decider [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- Truth's New Vape Product Is Smooth, Satisfying And Depressing 09/22/2021 - MediaPost Communications [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- Laguna Beach to revisit banning sales of tobacco and vape products - Los Angeles Times [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- Truth Initiative launches spoof vape brand to raise awareness of the dangers of vaping - Creative Review [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- ECigIntelligence: The Vape Brands Submitting The Highest Numbers of PMTAs ECigIntelligence: The Vape Brands Submitting The Highest Numbers of PMTAs -... [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- The US Obsession With Youth Vaping Looks Odd From Across the Atlantic - Filter [Last Updated On: September 22nd, 2021] [Originally Added On: September 22nd, 2021]
- In the Era Of Fake News, FDA Is Contributing to the Epidemic InsideSources - InsideSources [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- A Film on a Crisis, Powered by Willing Voices - The New York Times [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- SMOORE Outlines Its Mission of "atomization making life better" at GTNF 2021 - Yahoo Finance [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- Opinion: In the Era Of Fake News, FDA Is Contributing to the Epidemic - Prescott eNews [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- Changes to legislation around vaping sees varied opinions - The Macleay Argus [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- Vaping And Mental Health: Does Nicotine Use Cause Teen Depression? - American Council on Science and Health [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- The Media Needs to Get Vaping Right on the First Try - Filter [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- Vaping vs. Tobacco Smoking: What The FDA Is Getting Wrong - Forbes [Last Updated On: September 24th, 2021] [Originally Added On: September 24th, 2021]
- Politicians, bureaucrats determined to cripple lifesaving alternative to smoking - The Whittier Daily News [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- These new laws will hit the books on Friday in Florida - Wink News [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- LendingTree : More than 50% of Americans Who Smoke or Vape Have Lied to Their Health Insurer About It According to a ValuePenguin.com Survey -... [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- BAT to benefit if nicotine vaping is regulated - The Star Online [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- 7 surprising health benefits of vaping cannabis Film Daily - Film Daily [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- More than 50% of Americans Who Smoke or Vape Have Lied to Their Health Insurer About It According to a ValuePenguin.com Survey - PRNewswire [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- Dear Abby: Further thoughts on person vaping weed near a 12-year-old - Chicago Sun-Times [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- Consumer Groups Urge WHO to Save Lives By Endorsing THR Consumer Groups Urge WHO to Save Lives By Endorsing THR - Vaping Post [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- Vaping marijuana associated with more symptoms of lung ... [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- Vaping linked to COVID-19 risk in teens and young adults ... [Last Updated On: September 29th, 2021] [Originally Added On: September 29th, 2021]
- Hong Kong is Getting Closer to Banning Vaping and Heated Tobacco Products Hong Kong is Getting Closer to Banning Vaping and Heated Tobacco Products -... [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- The FDA's Bias Against The Vape Industry Emerges During The PMTA Process The FDA's Bias Against The Vape Industry Emerges During The PMTA Process -... [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- Bloomberg's Anti-Vaping Policies are Exploitative and Wrong - International Policy Digest [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- Pitt develops robot that vapes to study health impacts of e-cigarettes - NEXTpittsburgh [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- Laguna Beach to Discuss Ending Retail Sales of Tobacco and Vaping Products - Voice of OC [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- New California Vape Taxes Will Put the Squeeze on Synthetic Nicotine - Filter [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- Teens and Vaping: What you need to know to help them stop. - ABC 4 [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- The Alcohol and Drug Foundation - Alcohol and Drug Foundation [Last Updated On: October 7th, 2021] [Originally Added On: October 7th, 2021]
- St. Paul to introduce some of the strictest tobacco rules in the nation - Minnesota Public Radio News [Last Updated On: October 11th, 2021] [Originally Added On: October 11th, 2021]
- Verifique Cannabis Test Kits Experience Heightened Demand from Concerned Parents in Advance of Halloween - WFMZ Allentown [Last Updated On: October 11th, 2021] [Originally Added On: October 11th, 2021]
- Vape fluid 'contains thousands of chemicals that could harm health' - Wales Online [Last Updated On: October 11th, 2021] [Originally Added On: October 11th, 2021]
- New Study Claims That Vaping Causes Wheezing And Shortness of Breath - Vaping Post [Last Updated On: October 11th, 2021] [Originally Added On: October 11th, 2021]
- UAE says British man arrested for possession of synthetic cannabis oil has right of appeal - The National [Last Updated On: October 17th, 2021] [Originally Added On: October 17th, 2021]
- The Outcome of The EU TPD Implementation Report - Vaping Post [Last Updated On: October 17th, 2021] [Originally Added On: October 17th, 2021]
- Vaping causing COVID-19 transmission in the ACT - The Canberra Times [Last Updated On: October 17th, 2021] [Originally Added On: October 17th, 2021]