Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
326d21d1
Commit
326d21d1
authored
Dec 19, 2012
by
Don Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ie7 fixes: define indexOf, use charAt rather than [] to access string,
put try/catch around fn that was throwing errors.
parent
1b8dfadc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
lms/static/coffee/src/main.coffee
+8
-0
lms/static/sass/bourbon/css3/_box-sizing.scss
+0
-1
lms/static/scripts/boxsizing.htc
+4
-1
No files found.
lms/static/coffee/src/main.coffee
View file @
326d21d1
...
...
@@ -37,3 +37,11 @@ $ ->
$
(
'#signup'
).
click
->
$
(
'#signup-modal input[name="email"]'
).
focus
()
false
# fix for ie
if
!
Array
::
indexOf
Array
::
indexOf
=
(
obj
,
start
=
0
)
->
for
ele
,
i
in
this
[
start
..]
if
ele
is
obj
return
i
+
start
return
-
1
lms/static/sass/bourbon/css3/_box-sizing.scss
View file @
326d21d1
...
...
@@ -2,6 +2,5 @@
// content-box | border-box | inherit
-webkit-box-sizing
:
$box
;
-moz-box-sizing
:
$box
;
box-sizing
:
$box
;
box-sizing
:
$box
;
*
behavior
:
url(/static/scripts/boxsizing.htc)
;
}
lms/static/scripts/boxsizing.htc
View file @
326d21d1
...
...
@@ -85,7 +85,10 @@ function update(){
}
resizetimeout = window.setTimeout(function(){
restore();
init();
try {
init();
}
catch (err) {}
resizetimeout = null;
},100);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment