Skip to content

Commit

Permalink
fix #2202
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Jan 4, 2016
1 parent 8e92f13 commit 4d44d47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -15,6 +15,7 @@ Bugfixes
--------

* Decide is_mathjax based on current language tags (Issue #2205)
* Don't duplicate images in flowr when resizing page (Issue #2202)

New in v7.7.4
=============
Expand Down
4 changes: 2 additions & 2 deletions nikola/data/themes/bootstrap3/assets/js/flowr.plugin.js
Expand Up @@ -180,7 +180,7 @@
}
} //utils

// If the resposive var is set to true then listen for resize method
// If the responsive var is set to true then listen for resize method
// and prevent resizing from happening twice if responsive is set again during append phase!
if (settings.responsive && !$this.data('__responsive')) {
$(window).resize(function() {
Expand Down Expand Up @@ -211,7 +211,7 @@
var currentItem = 0;

// Store all the data
var allData = $this.data('data') || [];
var allData = [];
for (i = 0; i < data.length; i++) {
allData.push(data[i]);
}
Expand Down

0 comments on commit 4d44d47

Please sign in to comment.