1 function loadPanel(target, url) {
2 console.log('ajax', url, 'into', target);
3 $(document).trigger('panel:unload', target);
7 success: function(data, textStatus) {
8 console.log(target, 'ajax success');
10 console.log(target, 'triggering panel:load');
11 $(document).trigger('panel:load', target);
14 error: function(request, textStatus, errorThrown) {
15 console.log('ajax', url, target, 'error:', textStatus, errorThrown);
20 // Funkcja do tworzenia nowych paneli
21 function panel(load, unload) {
23 var eventId = Math.ceil(Math.random() * 1000000000);
25 unloadHandler = function(event, panel) {
26 if (self && self == panel) {
27 console.log('Panel', panel, 'unloading');
28 $(document).unbind('panel:unload.' + eventId);
31 console.log('Panel', panel, 'unloaded');
36 $(document).one('panel:load', function(event, panel) {
38 console.log('Panel', panel, 'loading');
39 $(document).bind('panel:unload.' + eventId, unloadHandler);
41 console.log('Panel', panel, 'loaded');
46 // ========================
47 // = Resizable panels =
48 // ========================
49 // function resizePanels() {
50 // // called on resize
51 // $('.panel').height($(window).height() - $('.panel').position().top);
52 // $('.panel-contents').height($(window).height() - $('.panel-contents').position().top);
53 // $('#right-panel-wrap').width($(window).width() - $('#left-panel-wrap').outerWidth());
56 // $(window).resize(function() {
60 $('#panels').make_hpanel({});
61 $('#panels').css('top', ($('#header').outerHeight() ) + 'px');
63 // $('#left-panel-wrap').bind('resizable:stop', resizePanels)
64 // .resizable({minWidth: 8});
67 $('.panel-toolbar select').change(function() {
68 loadPanel($('.panel-contents', $(this).parent().parent()), $(this).val())
70 // $('#id_folders').change(function() {
71 // $('#images').load('{% url folder_image_ajax %}' + $('#id_folders').val() + '/', function() {
72 // $('#images-wrap').data('lazyload:lastCheckedScrollTop', -10000);
78 // var editor = CodeMirror.fromTextArea("id_text", {
79 // parserfile: 'parsexml.js',
80 // path: "/static/js/codemirror/",
81 // stylesheet: "/static/css/xmlcolors.css",
82 // parserConfig: {useHTMLKludges: false},
83 // initCallback: function() {
84 // $('#images').autoscroll('iframe');
85 // $('.toggleAutoscroll').toggle(function() {
86 // $(this).html('Synchronizuj przewijanie');
87 // $('#images').disableAutoscroll();
89 // $(this).html('Nie synchronizuj przewijania');
90 // $('#images').enableAutoscroll();
94 // $('#toolbar-tabs li').click(function() {
95 // var id = $(this).attr('p:button-list');
96 // $('#toolbar-tabs li').removeClass('active');
97 // $(this).addClass('active');
98 // if (!$('#' + id).is(':visible')) {
99 // $('#toolbar-buttons ol').not('#' + id).hide();
100 // $('#' + id).show();
105 // $('#toolbar-buttons li').each(function() {
106 // var tag = $(this).attr('p:tag');
107 // var handler = function() {
108 // var text = editor.selection();
109 // editor.replaceSelection('<' + tag + '>' + text + '</' + tag + '>');
110 // if (text.length == 0) {
111 // var pos = editor.cursorPosition();
112 // editor.selectLines(pos.line, pos.character + tag.length + 2);
115 // if ($(this).attr('p:key')) {
116 // keys[$(this).attr('p:key')] = handler;
118 // $(this).click(handler)
121 // editor.grabKeys(function(event) {
122 // if (keys[event.keyCode]) {
123 // keys[event.keyCode]();
125 // }, function(event) {
126 // return event.altKey && keys[event.keyCode];
135 // $('#toolbar-buttons li').wTooltip({
138 // border: "1px solid #7F7D67",
140 // background: "#FBFBC6",
145 // $('#images-wrap').lazyload('.image-box', {threshold: 640 * 10, scrollTreshold: 640 * 5});