View bumpme
Testtet |
View example.js
import { iff } from './globalUtils'; | |
function someRenderFunction() { | |
return ( | |
<div className="otsPropertyForm"> | |
{iff(showTeamList, () => ( | |
<FormSection> | |
<FormHeading>Select a Team:</FormHeading> | |
<ListBox items={teamItems} value={teamId} onChange={this._onTeamListChange} /> | |
</FormSection> |
View gist:d3c331f76c719c84370b
/** | |
* Calls the callback and returns its result if the expression is truthy | |
* | |
* @param {string} expression | |
* @param {Function} callback | |
* @return {variant} Value of callback() if expression is true. Otherwise 'undefined' | |
*/ | |
export function iff(expression, callback) { | |
if (expression) { |
View gist:d4e6accfdadc44652f43
<!-- Injected Code --> | |
<script language="JavaScript" type="text/javascript"> | |
// Comcast Cable Communications, LLC Proprietary. Copyright 2014. | |
// Intended use is to display browser notifications for critical and time sensitive events. | |
var _ComcastAlert = (function(){ | |
return { | |
SYS_URL: '/e8f6b078-0f35-11de-85c5-efc5ef23aa1f/aupm/notify.do' | |
, dragObj: {zIndex: 999999} |