This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import os, sys | |
#: The reason is write at below page: | |
#: http://code.google.com/p/appengine-monkey/issues/detail?id=25#c3 | |
os.mkdir = None | |
ROOT_PATH = os.path.dirname(os.path.abspath(__file__)) | |
APP_PATH = os.path.join(ROOT_PATH, 'application') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Dev Tools Sample</title> | |
<script type="text/javascript"> | |
localStorage.setItem("message", "Hello World!"); | |
</script> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* For modern browsers */ | |
.cf:before, | |
.cf:after { | |
content:""; | |
display:table; | |
} | |
.cf:after { | |
clear:both; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<LazyHydrate never> | |
<Child> | |
<Child> | |
<Child> | |
<Child> | |
<p>This page uses vue-lazy-hydration library with never attribute.</p> | |
</Child> | |
</Child> | |
</Child> |