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
|
*DS_Store
|
||||||
*.ncrunchsolution
|
*.ncrunchsolution
|
||||||
*.*sdf
|
*.*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
|
if (el.addEventListener) { // DOM Events
|
||||||
el.addEventListener(eventName, callback, false);
|
el.addEventListener(eventName, callback, false);
|
||||||
} else if (el.attachEvent) { // IE8 events
|
} else if (el.attachEvent) { // IE8 events
|
||||||
el.attachEvent('on' + eventName, callback)
|
el.attachEvent("on" + eventName, callback)
|
||||||
} else {
|
} else {
|
||||||
el['on' + type] = callback;
|
el["on" + type] = callback;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNet.Diagnostics": "",
|
"Microsoft.AspNet.Diagnostics": "",
|
||||||
"Microsoft.Net.Runtime.Interfaces": "0.1.0-alpha-*",
|
"Microsoft.Net.Runtime.Interfaces": "0.1.0-alpha-*",
|
||||||
"Microsoft.AspNet.Mvc": "0.1.0-alpha-*"
|
"Microsoft.AspNet.Razor": "0.1.0-alpha-*"
|
||||||
},
|
},
|
||||||
|
|
||||||
"configurations" : {
|
"configurations" : {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue