fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Zmiana typu błędnie oznaczonego szablonu z text/javascript na text/html.
[redakcja.git]
/
project
/
static
/
js
/
views
/
xml.js
diff --git
a/project/static/js/views/xml.js
b/project/static/js/views/xml.js
index
ecd2734
..
460317b
100644
(file)
--- a/
project/static/js/views/xml.js
+++ b/
project/static/js/views/xml.js
@@
-12,8
+12,10
@@
var XMLView = View.extend({
this.parent = parent;
this.buttonToolbar = new ButtonToolbarView(
$('.xmlview-toolbar', this.element),
this.parent = parent;
this.buttonToolbar = new ButtonToolbarView(
$('.xmlview-toolbar', this.element),
- this.model.toolbarButtonsModel);
+ this.model.toolbarButtonsModel
, parent
);
+ $('.xmlview-toolbar', this.element).bind('resize.xmlview', this.resized.bind(this));
+
this.parent.freeze('Ładowanie edytora...');
this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
parserfile: 'parsexml.js',
this.parent.freeze('Ładowanie edytora...');
this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
parserfile: 'parsexml.js',
@@
-28,6
+30,12
@@
var XMLView = View.extend({
});
},
});
},
+ resized: function(event) {
+ var height = this.element.height() - $('.xmlview-toolbar', this.element).outerHeight();
+ console.log('.xmlview height =', height);
+ $('.xmlview', this.element).height(height);
+ },
+
editorDidLoad: function(editor) {
$(editor.frame).css({width: '100%', height: '100%'});
this.model
editorDidLoad: function(editor) {
$(editor.frame).css({width: '100%', height: '100%'});
this.model