diff --git a/common/lib/capa/capa/inputtypes.py b/common/lib/capa/capa/inputtypes.py index 2f30f634dd..0660340b41 100644 --- a/common/lib/capa/capa/inputtypes.py +++ b/common/lib/capa/capa/inputtypes.py @@ -1059,7 +1059,7 @@ class ImageInput(InputTypeBase): self.value.strip().replace(' ', '')) if m: # Note: we subtract 15 to compensate for the size of the dot on the screen. - # (is a 30x30 image--lms/static/green-pointer.png). + # (is a 30x30 image--lms/static/images/green-pointer.png). (self.gx, self.gy) = [int(x) - 15 for x in m.groups()] else: (self.gx, self.gy) = (0, 0) diff --git a/common/lib/capa/capa/templates/imageinput.html b/common/lib/capa/capa/templates/imageinput.html index 38dd42ba8d..b8e5d3aa46 100644 --- a/common/lib/capa/capa/templates/imageinput.html +++ b/common/lib/capa/capa/templates/imageinput.html @@ -19,7 +19,7 @@ top: 0;" > diff --git a/common/lib/xmodule/xmodule/css/problem/edit.scss b/common/lib/xmodule/xmodule/css/problem/edit.scss index bb31c6cebf..0da6d1d5d7 100644 --- a/common/lib/xmodule/xmodule/css/problem/edit.scss +++ b/common/lib/xmodule/xmodule/css/problem/edit.scss @@ -110,7 +110,7 @@ width: 26px; height: 21px; vertical-align: middle; - background: url(../img/problem-editor-icons.png) no-repeat; + background: url(../images/problem-editor-icons.png) no-repeat; } .problem-editor-icon.heading1 { diff --git a/lms/static/green-pointer.png b/lms/static/images/green-pointer.png similarity index 100% rename from lms/static/green-pointer.png rename to lms/static/images/green-pointer.png diff --git a/lms/static/img/problem-editor-icons.png b/lms/static/images/problem-editor-icons.png similarity index 100% rename from lms/static/img/problem-editor-icons.png rename to lms/static/images/problem-editor-icons.png