Skip to content

Instantly share code, notes, and snippets.

@JonnyFunFun
Created April 9, 2013 18:19
Show Gist options
  • Save JonnyFunFun/5348053 to your computer and use it in GitHub Desktop.
Save JonnyFunFun/5348053 to your computer and use it in GitHub Desktop.
Super simple mashup that adds an alert message to the header in TargetProcess
tau.mashups
.addDependency("libs/jquery/jquery")
.addMashup(function(config) {
var alertEl = '<br/><br/><div class="alert"><strong>Heads up!</strong> This is an awesome message!</div>';
$(document).ready(function() {
$('div#ctl00_helpPanel').append(alertEl);
});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment