1 function loadPanel(target, url) {
2 console.log('ajax', url, 'into', target);
3 $(document).trigger('panel:unload', target);
7 success: function(data, textStatus) {
9 $(document).trigger('panel:unload', target);
10 $(document).trigger('panel:load', target);
13 error: function(request, textStatus, errorThrown) {
14 $(document).trigger('panel:unload', target);
15 console.log('ajax', url, target, 'error:', textStatus, errorThrown);
21 // ========================
22 // = Resizable panels =
23 // ========================
24 function resizePanels() {
25 $('.panel').height($(window).height() - $('.panel').position().top);
26 $('#right-panel-wrap').width($(window).width() - $('#left-panel-wrap').outerWidth());
29 $(window).resize(function() {
33 $('#left-panel-wrap').bind('resizable:resize', resizePanels)
34 .resizable('#slider', {minWidth: 8});
38 $('.panel-toolbar select').change(function() {
39 loadPanel($('.panel-contents', $(this).parent().parent()), $(this).val())
41 // $('#id_folders').change(function() {
42 // $('#images').load('{% url folder_image_ajax %}' + $('#id_folders').val() + '/', function() {
43 // $('#images-wrap').data('lazyload:lastCheckedScrollTop', -10000);
49 // var editor = CodeMirror.fromTextArea("id_text", {
50 // parserfile: 'parsexml.js',
51 // path: "/static/js/codemirror/",
52 // stylesheet: "/static/css/xmlcolors.css",
53 // parserConfig: {useHTMLKludges: false},
54 // initCallback: function() {
55 // $('#images').autoscroll('iframe');
56 // $('.toggleAutoscroll').toggle(function() {
57 // $(this).html('Synchronizuj przewijanie');
58 // $('#images').disableAutoscroll();
60 // $(this).html('Nie synchronizuj przewijania');
61 // $('#images').enableAutoscroll();
65 // $('#toolbar-tabs li').click(function() {
66 // var id = $(this).attr('p:button-list');
67 // $('#toolbar-tabs li').removeClass('active');
68 // $(this).addClass('active');
69 // if (!$('#' + id).is(':visible')) {
70 // $('#toolbar-buttons ol').not('#' + id).hide();
71 // $('#' + id).show();
76 // $('#toolbar-buttons li').each(function() {
77 // var tag = $(this).attr('p:tag');
78 // var handler = function() {
79 // var text = editor.selection();
80 // editor.replaceSelection('<' + tag + '>' + text + '</' + tag + '>');
81 // if (text.length == 0) {
82 // var pos = editor.cursorPosition();
83 // editor.selectLines(pos.line, pos.character + tag.length + 2);
86 // if ($(this).attr('p:key')) {
87 // keys[$(this).attr('p:key')] = handler;
89 // $(this).click(handler)
92 // editor.grabKeys(function(event) {
93 // if (keys[event.keyCode]) {
94 // keys[event.keyCode]();
96 // }, function(event) {
97 // return event.altKey && keys[event.keyCode];
106 // $('#toolbar-buttons li').wTooltip({
109 // border: "1px solid #7F7D67",
111 // background: "#FBFBC6",
116 // $('#images-wrap').lazyload('.image-box', {threshold: 640 * 10, scrollTreshold: 640 * 5});