diff options
author | suelockwood <deathbear@apache.org> | 2013-12-05 15:06:17 -0500 |
---|---|---|
committer | Garren Smith <garren.smith@gmail.com> | 2013-12-10 17:42:58 +0200 |
commit | 204551c220f7bfecd8a7c000ef22cfd94e4fe46b (patch) | |
tree | 0ad8742a9dc316f125746c8bd3a9c0ed1cbff664 | |
parent | 9eb262979aa053f7d4b40bc39365a022ee0a52b6 (diff) | |
download | couchdb-204551c220f7bfecd8a7c000ef22cfd94e4fe46b.tar.gz |
remove initialize
-rw-r--r-- | src/fauxton/app/initialize.js | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/fauxton/app/initialize.js b/src/fauxton/app/initialize.js deleted file mode 100644 index ebba91cf0..000000000 --- a/src/fauxton/app/initialize.js +++ /dev/null @@ -1,33 +0,0 @@ -// Licensed under the Apache License, Version 2.0 (the "License"); you may not -// use this file except in compliance with the License. You may obtain a copy of -// the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -// License for the specific language governing permissions and limitations under -// the License. - -/* - * ::WARNING:: - * THIS IS A GENERATED FILE. DO NOT EDIT. - */ - - -define([], -function() { - // Provide a global location to place configuration settings and module - // creation. - var app = { - // The root path to run the application. - root: "/", - version: "1.0.dev", - // Host is used as prefix for urls - host: "../.." , - }; - - return app; -}); - |