Skip to content

Commit 9e120ed

Browse files
author
tasawernawaz
committed
Update best practices/examples/sequencing
ECOM-6963
1 parent 02c46b4 commit 9e120ed

File tree

11 files changed

+913
-394
lines changed

11 files changed

+913
-394
lines changed
Binary file not shown.

course_discovery/conf/locale/en/LC_MESSAGES/django.po

Lines changed: 278 additions & 96 deletions
Large diffs are not rendered by default.
Binary file not shown.

course_discovery/conf/locale/en/LC_MESSAGES/djangojs.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-02-24 18:17+0500\n"
10+
"POT-Creation-Date: 2017-02-28 15:51+0500\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313
"Language-Team: LANGUAGE <[email protected]>\n"
Binary file not shown.

course_discovery/conf/locale/eo/LC_MESSAGES/django.po

Lines changed: 448 additions & 191 deletions
Large diffs are not rendered by default.
Binary file not shown.

course_discovery/conf/locale/eo/LC_MESSAGES/djangojs.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-02-24 18:17+0500\n"
10+
"POT-Creation-Date: 2017-02-28 15:51+0500\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313
"Language-Team: LANGUAGE <[email protected]>\n"

course_discovery/static/js/publisher/publisher.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ $(document).ready(function(){
1010

1111
$('ul.tabs .course-tabs').click(function(){
1212
var tab_id = $(this).attr('data-tab'),
13-
$tabContent = $("#"+tab_id);
13+
$tabContent = $(this).closest('.row').siblings("#"+tab_id);
1414
$(this).parent().find('.course-tabs').removeClass('active');
15-
$tabContent.parent().find('.content').removeClass('active');
15+
$tabContent.siblings('.content').removeClass('active');
1616

1717
$(this).addClass('active');
1818
$tabContent.addClass('active');

course_discovery/static/sass/publisher/publisher.scss

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,7 @@
217217
.content{
218218
display: none;
219219
p{
220-
@include margin(0px, 0px, 0px, 0px);
221-
}
222-
p:first-of-type{
223-
margin-bottom: 20px;
220+
@include margin(0px, 0px, 20px, 0px);
224221
}
225222
}
226223
.content.active{

course_discovery/templates/publisher/add_update_course_form.html

Lines changed: 182 additions & 99 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)