Minor changes:
- Fixed mismatched quotes - Made PageGenerator depend directly on Razor instead of Mvc, as that's all it needs - Rebased on latest dev changes - #11
This commit is contained in:
parent
257b2abc43
commit
6ff73d50e0
|
|
@ -22,4 +22,5 @@ nuget.exe
|
|||
*DS_Store
|
||||
*.ncrunchsolution
|
||||
*.*sdf
|
||||
*.ipch
|
||||
*.ipch
|
||||
*.sln.ide
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -135,9 +135,9 @@
|
|||
if (el.addEventListener) { // DOM Events
|
||||
el.addEventListener(eventName, callback, false);
|
||||
} else if (el.attachEvent) { // IE8 events
|
||||
el.attachEvent('on' + eventName, callback)
|
||||
el.attachEvent("on" + eventName, callback)
|
||||
} else {
|
||||
el['on' + type] = callback;
|
||||
el["on" + type] = callback;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"dependencies": {
|
||||
"Microsoft.AspNet.Diagnostics": "",
|
||||
"Microsoft.Net.Runtime.Interfaces": "0.1.0-alpha-*",
|
||||
"Microsoft.AspNet.Mvc": "0.1.0-alpha-*"
|
||||
"Microsoft.AspNet.Razor": "0.1.0-alpha-*"
|
||||
},
|
||||
|
||||
"configurations" : {
|
||||
|
|
|
|||
Loading…
Reference in New Issue