Skip to content

Commit

Permalink
Copyright cleanups for RequireJS Optimizer build script
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeTschudi committed Aug 13, 2015
1 parent d18a1c3 commit d94c1f4
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 14 deletions.
12 changes: 4 additions & 8 deletions js/app.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
// Source: https://github.com/requirejs/example-jquery-cdn/blob/master/www/js/app.js
// Place third party dependencies in the lib folder
//
// Configure loading modules from the lib directory,
// except 'app' ones,
// Main module is in js/app directory, and it refers to third-party libraries in the js/lib directory
requirejs.config({
"baseUrl": "js/app",
"paths": {
"lib": "../lib"
baseUrl: "js/app",
paths: {
lib: "../lib"
}
});

Expand Down
4 changes: 2 additions & 2 deletions js/app/parseConfigInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ define(function () {
// not found in the line, the line is skipped. By forcing this order, the app doesn't have to check all tags for
// each line.
// Here is a sample source:
// <div>Copyright 2015 My City</div><div><br /></div><div>=== Access and use settings ===</div><div><br />
// <div>My City</div><div><br /></div><div>=== Access and use settings ===</div><div><br />
// </div><div>contribution star levels:</div><div>0: Getting Started @0</div><div>1: Beginner @5</div><div>2:
// Helper @10</div><div>3: Intermediate @15</div><div>4: Advanced @20</div><div>5: Wow! @25</div><div><br />
// </div><div>surveyor name field: SRVNAME</div><div>best photo field: BSTPHOTOID</div><div><br /></div>
Expand All @@ -145,7 +145,7 @@ define(function () {
// 2. remove all html tags (could have <b>, <i>, <u>, <ol>, <ul>, <li>, <a>, <font>, <span>, <br>, <div>,
// and their closures included or explicit)
// yields something like:
// 0: "Copyright 2015 My City"
// 0: "My City"
// 1: "=== Access and use settings ==="
// 2: "contribution star levels:"
// 3: "0: Getting Started @0"
Expand Down
2 changes: 1 addition & 1 deletion nls/de/resources.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*global define */
/*
/** @license
| Copyright 2015 Esri
|
| Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion nls/fr/resources.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*global define */
/*
/** @license
| Copyright 2015 Esri
|
| Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion nls/resources.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*global define */
/*
/** @license
| Copyright 2015 Esri
|
| Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
18 changes: 17 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/* ---------- bootstrap overrides ---------- */
/*
| Copyright 2015 Esri
|
| 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.
*/

/* ---------- bootstrap overrides ---------- */

html, body {
width: 100%;
Expand Down

0 comments on commit d94c1f4

Please sign in to comment.