Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
chanlee committed Apr 8, 2016
1 parent 4b25f3c commit f7c00e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion dist/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -6143,7 +6143,6 @@ Entry.Container.prototype.generateTabView = function() {
c.addClass("entryHide");
a.appendChild(c);
this.helperContainer = c;
Entry.helper.initBlockHelper(c);
d.addClass("selected");
};
Entry.Container.prototype.changeTabView = function(a) {
Expand Down
2 changes: 1 addition & 1 deletion dist/entry.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Entry.Container.prototype.setObjects = function(objectModels) {
*/
Entry.Container.prototype.getPictureElement = function(pictureId) {
for(var i in this.objects_) {
var object = this.objects_[i];
var object = this.objects_[i];
for (var j in object.pictures) {
if (pictureId === object.pictures[j].id) {
return object.pictures[j].view;
Expand All @@ -215,7 +215,7 @@ Entry.Container.prototype.getPictureElement = function(pictureId) {
*/
Entry.Container.prototype.setPicture = function(picture) {
for(var i in this.objects_) {
var object = this.objects_[i];
var object = this.objects_[i];
for (var j in object.pictures) {
if (picture.id === object.pictures[j].id) {
var picture_ = {};
Expand Down Expand Up @@ -948,7 +948,7 @@ Entry.Container.prototype.generateTabView = function() {
helperContainer.addClass('entryHide');
view.appendChild(helperContainer);
this.helperContainer = helperContainer;
Entry.helper.initBlockHelper(helperContainer);
//Entry.helper.initBlockHelper(helperContainer);

tab1.addClass('selected');
};
Expand Down

0 comments on commit f7c00e4

Please sign in to comment.