fixed application crash on IE.

removed changed header text to be capitalize instead of uppercase
This commit is contained in:
kay.one 2013-05-20 17:34:02 -07:00
parent 95a6dfc34e
commit b010c8d5a1
2 changed files with 12 additions and 1 deletions

View File

@ -544,7 +544,7 @@ footer {
text-decoration: none;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
text-transform: uppercase;
text-transform: capitalize;
font-weight: 300;
}
.b-database {

View File

@ -8,6 +8,17 @@
this.push(model);
*/
if (!window.console) {
window.console = {};
}
if (!window.console.debug) {
window.console.debug = function () {
};
}
window.alert = function (message) {
window.Messenger().post(message);
};