Skip to content

Instantly share code, notes, and snippets.

@hvgotcodes
Created March 13, 2012 12:23
Show Gist options
  • Save hvgotcodes/2028463 to your computer and use it in GitHub Desktop.
Save hvgotcodes/2028463 to your computer and use it in GitHub Desktop.
title : SC.LabelView.design({
valueBinding : SC.Binding.oneWay('Licenser.companiesController.length').transform(function(val) {
var ret = "none";
if (val) ret = "Total Companies [%@]".fmt(val);
return ret;
}),
classNames : [ 'title' ]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment