Now Reading
Micki Singer | Local Obituaries | ravallirepublic.com

Micki Singer | Local Obituaries | ravallirepublic.com

Return to homepage ×


Please subscribe to keep reading. You can cancel at any time.

‘);
$(‘.lee-featured-subscription’).html(sFallBack);
}

function lee_formatPackage(oService){
try {
var bOnlyModal = true;
var oSettings = lee_getPackageSettings(oService.HomeMembership);
var newService = {};
if(parseInt(oService.WebFeatureFG) === 2) return false;
if(oService.WebStartPrice != ”){
var custom = JSON.parse(oService.WebStartPrice);
$.each(custom, function(k,v){
newService[k] = v;
});
}
if(bOnlyModal && newService.in_modal && newService.in_modal.toLowerCase() === ‘false’) return false;
if(!bOnlyModal && newService.not_members && newService.not_members.toLowerCase() === ‘true’) return false;

newService.has_featured_class = newService.featured ? ‘featured-package’ : ”;
newService.sort = parseInt((newService.sort) ? newService.sort : oSettings.sort);
newService.title = (newService.package_title && newService.package_title != ”) ? newService.package_title : oSettings.title;
newService.level = oService.HomeMembership;
newService.html = oService.WebOfferHTML;
newService.disabled = newService.disable_purchase ? ‘disabled’ : ”;

var price = lee_formatPackagePrice(newService.start_price);
newService.start_price = price.cost;
newService.format_dollars = (price.format_dollars) ? price.format_dollars : ”;
newService.format_cents = (price.format_cents) ? price.format_cents : ”;
newService.start_at_rate = (newService.fixed_rate === ‘true’) ? ‘for the low price of’ : ‘starting at’;

if( !newService.term ) newService.term = ‘per month’;

newService.has_promotion_class = ”;
if( newService.promotional_price && newService.promotional_price != ” ){
newService.has_promotion_class = ‘has-promotion’;
var promotion = lee_formatPackagePrice(newService.promotional_price);
newService.promotional_price = promotion.cost;
newService.promotional_format_dollars = (promotion.format_dollars) ? promotion.format_dollars : ”;
newService.promotional_format_cents = (promotion.format_cents) ? promotion.format_cents : ”;
}

newService.special_title_class = newService.special_title ? ‘has-special-title’ : ”;
newService.special_label_class = newService.label ? ‘has-label’ : ”;

newService.action_button = ‘Sign Up’;
if(newService.disabled === ‘disabled’){
newService.start_at_rate = ‘Call us at’;
newService.start_price = ‘866-839-6397’;
newService.term = ‘to get started’;
newService.action_button = ‘Call Today’;
}

window.lee_service_impressions.push({
‘id’: newService.level,
‘name’: newService.title,
‘price’: newService.start_price,
‘brand’: “ravallirepublic.com”,
‘category’: ‘subscription’,
‘list’: ‘Block’,
‘position’: newService.sort
});

return newService;

} catch(e){
if(window.console) console.warn(e);
return false;
}
}

function lee_sortPackages(property) {
var sortOrder = 1;
if(property[0] === “-“) {
sortOrder = -1;
property = property.substr(1);
}
return function (a,b) {
var result = (a[property] b[property]) ? 1 : 0;
return result * sortOrder;
}
}

function lee_getPackageSettings(sPackage){
switch(sPackage.toLowerCase()){
case ‘dob’:
return {title: ‘Digital Basic’, sort: 0};
break;
case ‘dop’:
return {title: ‘Digital Plus’, sort: 1};
break;
case ‘dopl’:
return {title: ‘Digital Platinum’, sort: 2};
break;
case ‘silv’:
return {title: ‘Silver’, sort: 3};
break;
case ‘gold’:
return {title: ‘Gold’, sort: 4};
break;
case ‘plat’:
return {title: ‘Platinum’, sort: 5};
break;
}
}

function lee_replacePackageTokens(sPackage, oService, sCol){
var hasPromotion = false;
$.each(oService, function(k,v){
if( k === ‘html’){
v = v.replace(new RegExp(‘{{domain}}’, ‘gi’), ‘ravallirepublic.com’)
.replace(new RegExp(‘{{site_name}}’, ‘gi’), ‘Ravalli Republic’)
.replace(new RegExp(‘{{business_name}}’, ‘gi’), ‘Ravalli Republic’)
.replace(new RegExp(‘{{site_phone}}’, ‘gi’), ‘866-839-6397’);
}
sPackage = sPackage.replace(new RegExp(‘{{‘+k+’}}’, ‘gi’), v);
});
if(sCol) sPackage = sPackage.replace(‘{{col}}’, sCol);
return sPackage;
}

try {
var oPackages = [],
oFeatured = false,
sHtml = ”,
sTemplate = $(‘#lee-service-template’).html();

$.each(window.leeMembershipPackages, function(i, oService){
var oService = lee_formatPackage(oService);
if(oService){
oPackages.push(oService);
if(oService.featured === ‘true’) oFeatured = oService;
}
});

if(oPackages.length === 0){ throw ‘No packages defined’; }

oPackages.sort(lee_sortPackages(‘sort’));

if(!oFeatured) oFeatured = oPackages[0];

if(oPackages.length === 1){
sTemplate = $(‘#lee-service-template-single’).html();
$(‘#lee-services-list’).addClass(‘single’);
} else {
$(‘#lee-services-list’).addClass(‘multiple’);
}

switch(oPackages.length){
case 6: var sCol = ‘2’; break;
case 5: var sCol = ‘5ths’; break;
case 4: var sCol = ‘3’; break;
case 3: var sCol = ‘4’; break;
case 2: var sCol = ‘6’; break;
default: var sCol = ’12’; break;
}

$(‘#lee-services-modal’).addClass(‘packages_’+oPackages.length);

$.each(oPackages, function(i, oService){
sHtml += lee_replacePackageTokens(sTemplate, oService, sCol);
});

$(‘#lee-services-list .packages’).html(sHtml).promise().then(function(){
$(‘#lee-services-list .loading’).hide();
$(‘#lee-services-list .packages’).css(‘opacity’, 1);
});

if(!__tnt.user.services){
if( $(‘.lee-featured-subscription’).length > 0 && oFeatured ){
$(‘.lee-featured-subscription’).each(function(){
var html = $(this).html();
if( !oFeatured.featured_button_text ){
if(oFeatured.promotional_price){
oFeatured.featured_button_text = oFeatured.promotional_format_dollars+oFeatured.promotional_price+oFeatured.promotional_format_cents+’ ‘+oFeatured.term;
} else {
oFeatured.featured_button_text = ‘Join for ‘+oFeatured.format_dollars+oFeatured.start_price+oFeatured.format_cents+’ ‘+oFeatured.term;
}
}
html = lee_replacePackageTokens(html, oFeatured);
$(this).html(html);
if(oFeatured.promotional_price) $(this).addClass(‘has-promotiom’);
if( $(this).hasClass(‘show-after-loaded’) ) $(this).show();
});
}
}

} catch (e) {
if(window.console) console.warn(e);
lee_serviceError();
}

window.lee_fetched_services = true;
});

×

Sign Up Today and Support Local Journalism

Enjoy more articles from the Ravalli County’s Most Trusted Information Source. Subscribers can log in for unlimited digital access








Singer

Singer

MISSOULA — Missoula lost one of its best friends and musicians in the early morning hours of New Year’s Day, Jan. 1, 2020, due to a tragic automobile accident. Micki Singer loved Missoula’s music community. He was more than a drummer. He was a true musician, and a great band member who always helped his fellow musicians out.

Micki’s first love, of course, was Jazz. He frequently played with the Basement Boys, Micki’s Allstars, Kimberly Carlson, and others. He was well-known as a drummer in The Lolo Creek Band, The Soul City Cowboys, UFOkies, Zeppo, Party Trained, and Strange Brew. He also played music in Hamilton and the Ravalli area, where his mother, Z’eva Singer, resides. Micki’s latest passion project was hosting the Local Exposure radio show on Missoula’s KBGA, 89.9 FM, where he enjoyed showing off his friends’ musical talents and helping up-and-coming musicians.

Micki had a very large presence in the community. He affected so many people through his ability to connect fellow musicians. He just loved music so much that he wanted to see local musicians succeed. Though he struggled with medical issues for most of his life, he never stopped playing music. Even at his last gig on New Year’s Eve, he played the drums one-handed.

Micki was born in Palo Alto, California on Aug. 26, 1956. He moved to Missoula from the San Francisco Bay Area in 2009, and met his life partner, Helena Vlasto. Together, they made their home in East Missoula for the last nine-and-a-half years.

Micki is preceded in death by his father, Mervin “Mickey” Lee Singer. He is survived by his loving mother, Z’eva Singer, of Hamilton; his brother, Daniel Singer, of Altadena, California; his sister, Valerie Singer, of Altoona, Iowa; his stepmother, Marian Singer; his beloved, Helena Vlasto; his stepchildren, Dimitrios and Sofia Tsolakidis; his brother-in-law, John Vlasto; and his favorite dog, Chichi Rodriguez.

There will be a celebration of Micki’s life for the community at 3 p.m., on Feb. 2, 2020 at the Eagles Lodge located at 2420 South Ave W, Missoula, MT 59801.

Sign up to get the most recent local obituaries delivered to your inbox.

What's Your Reaction?
Excited
0
Happy
0
In Love
0
Not Sure
0
Silly
0
Scroll To Top