Skip to content

Commit

Permalink
Merge pull request #370 from timgates42/bugfix_typo_unique
Browse files Browse the repository at this point in the history
docs: Fix simple typo, uniaue -> unique
  • Loading branch information
ashwin31 authored Mar 5, 2020
2 parents cb1ea9a + 4a747f5 commit 31cc1e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions marketing/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def campaign_new(request):
for e in links:
llist.append(e.get('href'))

# get uniaue linnk
# get unique link
links = set(llist)

# Replace Links with new One
Expand Down Expand Up @@ -1393,4 +1393,4 @@ def contacts_list_elastic_search(request):

# # def get_context_data(self, *args, **kwargs):
# # context = super(MarketingContactEmailSearch, self).get_context_data(*args, **kwargs)
# # return context
# # return context
4 changes: 2 additions & 2 deletions static/js/ajaxForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ $.fn.ajaxSubmit = function(options) {
url = (typeof action === 'string') ? $.trim(action) : '';
url = url || window.location.href || '';
if (url) {
// clean url (don't include hash vaue)
// clean url (don't include hash value)
url = (url.match(/^([^#]+)/)||[])[1];
}

Expand Down Expand Up @@ -1274,4 +1274,4 @@ function log() {
}
}

}));
}));

0 comments on commit 31cc1e6

Please sign in to comment.