This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
height: 34px; | |
width: 100%; | |
border-radius: 3px; | |
border: 1px solid transparent; | |
border-top: none; | |
border-bottom: 1px solid #DDD; | |
box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF; | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Look at me I'm transcluded! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {PizzaOrderSelectors} from '@themes/PizzaOrder/PizzaOrder.selectors'; | |
import {PizzaOrderInteractors} from '@themes/PizzaOrder/PizzaOrder.interactors'; | |
ngOnInit() { | |
this.userName$ = this.store.select(PizzaOrderSelectors.selectUserName); | |
this.pizzaTopping$ = this.store.select(PizzaOrderSelectors.selectPizzaToppings); | |
this.pizzaCrustType$ = this.store.select(PizzaOrderSelectors.selectPizzaCrustType); | |
this.deliveryEstimate$ = this.store.select(PizzaOrderSelectors.selectDeliveryEstimate); | |
this.driverName$ = this.store.select(PizzaOrderSelectors.selectDriverName); | |
this.driverCarType$ = this.store.select(PizzaOrderSelectors.selectDriverCarType); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createSelector, createFeatureSelector } from '@ngrx/store'; | |
const selectUser = createFeatureSelector('user'); | |
const selectDriver = createFeatureSelector('driver'); | |
const selectPizzaOrder = createFeatureSelector('pizzaorder'); | |
const selectPizza = createFeatureSelector('pizza'); | |
const selectDelivery = createFeatureSelector('delivery'); | |
const selectUserName = createSelector( | |
selectUser, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {DisplayModal} from '@actions/PizzaOrder.actions'; | |
import {AddTopping, AddCrustType} from '@actions/PizzaOrder.actions'; | |
// namespace actions specific only to theme | |
export const PizzaOrderInteractors = { | |
AddTopping: AddTopping, | |
AddCrustType: AddCrustType, | |
DisplayModal: DisplayModal | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import math, os | |
''' | |
This application maps notes of a decimal time domain to a binary, a-metric domain, | |
such that each measure represents exactly one second and notation is accurate to within 30 ms. | |
1 = 1/4note | |
2 = 1/8note | |
4 = 1/16 note | |
8 = 1/32 note |
NewerOlder