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:
DamianEdwards 2014-05-02 22:51:29 -07:00
parent 257b2abc43
commit 6ff73d50e0
4 changed files with 6 additions and 5 deletions

3
.gitignore vendored
View File

@ -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

View File

@ -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;
}
});

View File

@ -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" : {