ui-alerts-api.js
1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var UIAlertsApi = function () {
var handleDemo = function() {
$('#alert_show').click(function(){
App.alert({
container: $('#alert_container').val(), // alerts parent container(by default placed after the page breadcrumbs)
place: $('#alert_place').val(), // append or prepent in container
type: $('#alert_type').val(), // alert's type
message: $('#alert_message').val(), // alert's message
close: $('#alert_close').is(":checked"), // make alert closable
reset: $('#alert_reset').is(":checked"), // close all previouse alerts first
focus: $('#alert_focus').is(":checked"), // auto scroll to the alert after shown
closeInSeconds: $('#alert_close_in_seconds').val(), // auto close after defined seconds
icon: $('#alert_icon').val() // put icon before the message
});
});
}
var handleCode = function() {
var myTextArea = document.getElementById('code_editor_demo');
var myCodeMirror = CodeMirror.fromTextArea(myTextArea, {
lineNumbers: true,
matchBrackets: true,
styleActiveLine: true,
mode: 'javascript',
smartIndent: true,
indentWithTabs: true,
readOnly: true,
inputStyle: 'textarea',
theme: 'neo'
});
}
return {
//main function to initiate the module
init: function () {
handleDemo();
handleCode();
}
};
}();
jQuery(document).ready(function() {
UIAlertsApi.init();
});