I have a component:

@Component({
    providers: [
        FlowsheetService,
        SubscriptionService
    ],
    moduleId: module.id,
    selector: 'flowsheet',
    templateUrl: './flowsheet.component.html',
    styleUrls: ['./lastRow.css']
})


lastRow.css in the same directory as the component file contains:

.yellow {
    background-color: yellow;
}


in my third party control there is an API that needs a css class name as return 
value.


that function is as follows:


function className() {
    return 'yellow';
}


I don't see anywhere showing up in yellow in my 3rd party control.


Am I coding this correctly in general?


-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to