fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' into lqc-trunk
[redakcja.git]
/
platforma
/
static
/
js
/
views
/
gallery.js
diff --git
a/platforma/static/js/views/gallery.js
b/platforma/static/js/views/gallery.js
old mode 100644
(file)
new mode 100755
(executable)
index
d3398ce
..
d6844c6
--- a/
platforma/static/js/views/gallery.js
+++ b/
platforma/static/js/views/gallery.js
@@
-10,7
+10,8
@@
var ImageGalleryView = View.extend({
init: function(element, model, parent, template)
{
console.log("init for gallery");
init: function(element, model, parent, template)
{
console.log("init for gallery");
- this._super(element, model, template);
+ var submodel = model.contentModels['gallery'];
+ this._super(element, submodel, template);
this.parent = parent;
console.log("gallery model", this.model);
this.parent = parent;
console.log("gallery model", this.model);
@@
-220,6
+221,8
@@
var ImageGalleryView = View.extend({
{
if(!this.model) return;
{
if(!this.model) return;
+ $('.choose-gallery-button', this.element).unbind();
+
/* first unbind all */
if(this.$nextButton) this.$nextButton.unbind();
if(this.$prevButton) this.$prevButton.unbind();
/* first unbind all */
if(this.$nextButton) this.$nextButton.unbind();
if(this.$prevButton) this.$prevButton.unbind();
@@
-261,6
+264,12
@@
var ImageGalleryView = View.extend({
this.changePageZoom(this.pageZoom);
} else {
this._super(template);
this.changePageZoom(this.pageZoom);
} else {
this._super(template);
+
+ var self = this;
+ $('.choose-gallery-button', self.element).click(function() {
+ console.log('CLICK CLICK')
+ self.model.setGallery($('#id_subpath', self.element).val());
+ });
}
},
}
},