Skip to content

Commit

Permalink
fixing element closures
Browse files Browse the repository at this point in the history
  • Loading branch information
Snkz committed Feb 13, 2015
1 parent f880b20 commit a389749
Show file tree
Hide file tree
Showing 9 changed files with 65 additions and 409 deletions.
4 changes: 2 additions & 2 deletions static/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ Widgets._input = function(question, page, type) {

// Click the + for new input
$(page)
.find('.next_input')
.find('.question__add')
.click(function() {
self._addNewInput(page, $(page).find('input').last(), question);
});
Expand All @@ -423,7 +423,7 @@ Widgets._addNewInput = function(page, input, question) {
input
.clone(true)
.val(null)
.insertBefore(page.find(".next_input"))
.insertBefore(page.find(".question__add"))
.focus();
}
};
Expand Down
111 changes: 0 additions & 111 deletions static/css/dokomo-buttons.css

This file was deleted.

1 comment on commit a389749

@vr2262
Copy link
Contributor

@vr2262 vr2262 commented on a389749 Feb 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

holy moly

Please sign in to comment.