Skip to content

Commit

Permalink
making app-cache optional
Browse files Browse the repository at this point in the history
  • Loading branch information
jszersze committed Dec 8, 2015
1 parent 1e80e01 commit 248bdcd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 6 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
<html class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" manifest="manifest.appcache"> <!--<![endif]-->

{{#if use_manifest}}
<html class="no-js" lang="en" manifest="manifest.appcache" > <!--<![endif]-->
{{else}}
<html class="no-js" lang="en"> <!--<![endif]-->
{{/if}}
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
Expand Down
1 change: 0 additions & 1 deletion public/js/libs/backbone/backbone-1.0.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
// http://backbonejs.org

(function(){
console.log('4 Hello!');

// Initial Setup
// -------------
Expand Down
2 changes: 0 additions & 2 deletions public/js/libs/underscore/underscore-1.4.4.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

(function() {

console.log('3 Hello!');

// Baseline setup
// --------------

Expand Down

0 comments on commit 248bdcd

Please sign in to comment.