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:load', target);
12 error: function(request, textStatus, errorThrown) {
13 console.log('ajax', url, target, 'error:', textStatus, errorThrown);
18 // Funkcja do tworzenia nowych paneli
19 function panel(load, unload) {
21 var eventId = Math.ceil(Math.random() * 1000000000);
23 unloadHandler = function(event, panel) {
24 if (self && self == panel) {
25 $(document).unbind('panel:unload.' + eventId, unloadHandler);
30 $(document).one('panel:load', function(event, panel) {
32 $(document).bind('panel:unload.' + eventId, unloadHandler);
38 // ========================
39 // = Resizable panels =
40 // ========================
41 function resizePanels() {
42 $('.panel').height($(window).height() - $('.panel').position().top);
43 $('#right-panel-wrap').width($(window).width() - $('#left-panel-wrap').outerWidth());
46 $(window).resize(function() {
50 $('#left-panel-wrap').bind('resizable:resize', resizePanels)
51 .resizable('#slider', {minWidth: 8});
55 $('.panel-toolbar select').change(function() {
56 loadPanel($('.panel-contents', $(this).parent().parent()), $(this).val())
58 // $('#id_folders').change(function() {
59 // $('#images').load('{% url folder_image_ajax %}' + $('#id_folders').val() + '/', function() {
60 // $('#images-wrap').data('lazyload:lastCheckedScrollTop', -10000);
66 // var editor = CodeMirror.fromTextArea("id_text", {
67 // parserfile: 'parsexml.js',
68 // path: "/static/js/codemirror/",
69 // stylesheet: "/static/css/xmlcolors.css",
70 // parserConfig: {useHTMLKludges: false},
71 // initCallback: function() {
72 // $('#images').autoscroll('iframe');
73 // $('.toggleAutoscroll').toggle(function() {
74 // $(this).html('Synchronizuj przewijanie');
75 // $('#images').disableAutoscroll();
77 // $(this).html('Nie synchronizuj przewijania');
78 // $('#images').enableAutoscroll();
82 // $('#toolbar-tabs li').click(function() {
83 // var id = $(this).attr('p:button-list');
84 // $('#toolbar-tabs li').removeClass('active');
85 // $(this).addClass('active');
86 // if (!$('#' + id).is(':visible')) {
87 // $('#toolbar-buttons ol').not('#' + id).hide();
88 // $('#' + id).show();
93 // $('#toolbar-buttons li').each(function() {
94 // var tag = $(this).attr('p:tag');
95 // var handler = function() {
96 // var text = editor.selection();
97 // editor.replaceSelection('<' + tag + '>' + text + '</' + tag + '>');
98 // if (text.length == 0) {
99 // var pos = editor.cursorPosition();
100 // editor.selectLines(pos.line, pos.character + tag.length + 2);
103 // if ($(this).attr('p:key')) {
104 // keys[$(this).attr('p:key')] = handler;
106 // $(this).click(handler)
109 // editor.grabKeys(function(event) {
110 // if (keys[event.keyCode]) {
111 // keys[event.keyCode]();
113 // }, function(event) {
114 // return event.altKey && keys[event.keyCode];
123 // $('#toolbar-buttons li').wTooltip({
126 // border: "1px solid #7F7D67",
128 // background: "#FBFBC6",
133 // $('#images-wrap').lazyload('.image-box', {threshold: 640 * 10, scrollTreshold: 640 * 5});