Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(872)

Side by Side Diff: experimental/webtry/templates/index.html

Issue 261693003: Use CodeMirror for WebTry snippets. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Rebased. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Skia WebTry</title> 4 <title>Skia WebTry</title>
5 <meta charset='utf-8' /> 5 <meta charset='utf-8' />
6 <link rel="stylesheet" href="/css/" type="text/css" media="screen"> 6 <link rel="stylesheet" href="/res/css/webtry.css" type="text/css" media="scr een">
7
8 <!-- CodeMirror resources -->
9 <script src="/res/js/cm/codemirror.js"></script>
jcgregorio 2014/05/01 13:27:30 Move js to content.html, keep the CSS here. Do th
jcgregorio 2014/05/01 14:11:25 Also the js and css imports for recent.html need t
f(malita) 2014/05/01 14:24:40 Done.
f(malita) 2014/05/01 14:24:40 Done.
10 <link rel="stylesheet" href="/res/css/cm/codemirror.css">
11 <link rel="stylesheet" href="/res/css/cm/ambiance.css">
12 <script src="/res/js/cm/clike.js"></script>
7 </head> 13 </head>
8 <body> 14 <body>
9 {{template "titlebar.html" .}} 15 {{template "titlebar.html" .}}
10 {{template "content.html" .}} 16 {{template "content.html" .}}
11 17
12 <script type='text/javascript' charset='utf-8'> 18 <script type='text/javascript' charset='utf-8'>
13 // Not running in a workspace. 19 // Not running in a workspace.
14 var workspaceName = ""; 20 var workspaceName = "";
15 </script> 21 </script>
16 <script src="/js/webtry.js" type="text/javascript" charset="utf-8"></script> 22 <script src="/res/js/webtry.js" type="text/javascript" charset="utf-8"></scrip t>
17 </body> 23 </body>
18 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698