mysliceMessage() js function can be used to display a message
[unfold.git] / portal / static / js / myslice-ui.js
index 747098a..e2e8ad9 100644 (file)
@@ -1,10 +1,18 @@
 
+/*
+ * Call it with level: success, info, warning, danger
+ */
+function mysliceAlert(msg, level = 'warning') {
+       var el = $('#myslice-message')
+       el.find('.message').text(msg);
+       el.addClass('alert-' + level);
+       el.fadeIn('fast');
+}
 /* Table initialisation */
 $(document).ready(function() {
        
        var platformParameters = {};
        
-