diff options
author | Kevin Schaaf <kevin.schaaf@palm.com> | 2012-06-12 13:36:26 -0700 |
---|---|---|
committer | Kevin Schaaf <kevin.schaaf@palm.com> | 2012-06-12 13:36:26 -0700 |
commit | bb0d539aa850bc50a3641dec5fb8ba2459d21d64 (patch) | |
tree | cfa89fe829a43d9171fb5ddabca0a3b5a37f2b16 /api/index.html | |
parent | d9f2baca31bf45d493d2681442c94a6e1cd46cb1 (diff) | |
download | biblez-ng-bb0d539aa850bc50a3641dec5fb8ba2459d21d64.tar.gz |
Update API viewer title, viewport syntax fix (comma), fix doctype for IE standards mode, specify charset early so browser can render faster.
Diffstat (limited to 'api/index.html')
-rw-r--r-- | api/index.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/api/index.html b/api/index.html index a5697e6..1677428 100644 --- a/api/index.html +++ b/api/index.html @@ -1,11 +1,12 @@ -<!doctype html> +<!DOCTYPE html> <html> <head> - <title>Enyo Bootplate App</title> + <title>Enyo API Viewer</title> <link rel="shortcut icon" href="assets/favicon.ico"> <!-- --> + <meta http-equiv="Content-Type" content="text/html; charset=utf8"> <meta name="apple-mobile-web-app-capable" content="yes"> - <meta name="viewport" content="width=device-width initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- css --> <link href="build/enyo.css" rel="stylesheet"> <link href="build/app.css" rel="stylesheet"> |