Skip to content

Instantly share code, notes, and snippets.

@cookra
Created June 29, 2017 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cookra/2a936ff68db03fdb1b6269f027d190f1 to your computer and use it in GitHub Desktop.
Save cookra/2a936ff68db03fdb1b6269f027d190f1 to your computer and use it in GitHub Desktop.
_notify: function(colour, msg) {
var c = {
red: 'ffb6b9',
green: 'd1ffb1',
amber: 'ffdc67',
blue: '71d9ff',
white: 'ffffff'
};
Rally.ui.notify.Notifier.show({
message: msg,
height: 40,
width: '100%',
style: {
background: '#' + c[colour]
}
});
},
//
this._notify('amber', 'Doing something');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment