pattern-reader-view.js
1.24 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
48
49
50
51
52
/* global $dj, getBusyOverlay, common */
var edit = {
changed: false,
get_id: function() {
"use strict";
return edit.active_id;
},
load_content: function(id, is_created, check_callback) {
"use strict";
$.ajaxJSON({
url: $dj.ajax_get_name,
method: 'get',
data: {
pattern_id: id
},
callback: function(data) {
common.update_hash('' + id + '/' + data.name);
}
});
$.ajaxJSON({
method: 'get',
url: $dj.ajax_pattern_preview,
dest: $('#preview'),
data: {id: id},
check_callback: check_callback,
callback: function() {
edit.busy_off();
}
});
edit.active_id = id;
},
// busy
busy_ctrl: null,
busy_on: function() {
"use strict";
if (!edit.busy_ctrl) {
edit.busy_ctrl = getBusyOverlay(
$('#right')[0],
{color: 'black', opacity: 0.2},
{size: 30});
}
},
busy_off: function() {
"use strict";
if (edit.busy_ctrl) edit.busy_ctrl.remove();
edit.busy_ctrl = null;
}
};