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({});
62 // $('#left-panel-wrap').bind('resizable:stop', resizePanels)
63 // .resizable({minWidth: 8});
66 $('.panel-toolbar select').change(function() {
67 loadPanel($('.panel-contents', $(this).parent().parent()), $(this).val())
69 // $('#id_folders').change(function() {
70 // $('#images').load('{% url folder_image_ajax %}' + $('#id_folders').val() + '/', function() {
71 // $('#images-wrap').data('lazyload:lastCheckedScrollTop', -10000);
77 // var editor = CodeMirror.fromTextArea("id_text", {
78 // parserfile: 'parsexml.js',
79 // path: "/static/js/codemirror/",
80 // stylesheet: "/static/css/xmlcolors.css",
81 // parserConfig: {useHTMLKludges: false},
82 // initCallback: function() {
83 // $('#images').autoscroll('iframe');
84 // $('.toggleAutoscroll').toggle(function() {
85 // $(this).html('Synchronizuj przewijanie');
86 // $('#images').disableAutoscroll();
88 // $(this).html('Nie synchronizuj przewijania');
89 // $('#images').enableAutoscroll();
93 // $('#toolbar-tabs li').click(function() {
94 // var id = $(this).attr('p:button-list');
95 // $('#toolbar-tabs li').removeClass('active');
96 // $(this).addClass('active');
97 // if (!$('#' + id).is(':visible')) {
98 // $('#toolbar-buttons ol').not('#' + id).hide();
99 // $('#' + id).show();
104 // $('#toolbar-buttons li').each(function() {
105 // var tag = $(this).attr('p:tag');
106 // var handler = function() {
107 // var text = editor.selection();
108 // editor.replaceSelection('<' + tag + '>' + text + '</' + tag + '>');
109 // if (text.length == 0) {
110 // var pos = editor.cursorPosition();
111 // editor.selectLines(pos.line, pos.character + tag.length + 2);
114 // if ($(this).attr('p:key')) {
115 // keys[$(this).attr('p:key')] = handler;
117 // $(this).click(handler)
120 // editor.grabKeys(function(event) {
121 // if (keys[event.keyCode]) {
122 // keys[event.keyCode]();
124 // }, function(event) {
125 // return event.altKey && keys[event.keyCode];
134 // $('#toolbar-buttons li').wTooltip({
137 // border: "1px solid #7F7D67",
139 // background: "#FBFBC6",
144 // $('#images-wrap').lazyload('.image-box', {threshold: 640 * 10, scrollTreshold: 640 * 5});