X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=project%2Fjs%2Fapp.config.js;h=03eb9924b0756f39c7651b57834f5fa7128f59f2;hb=27900e7a9465f52d06f84aacb2fae4b32337dfb1;hp=4a9ccb4e0205ab485afbc3103db3b71e40bc360c;hpb=335f789d65024a4f29b1fc71773bac03430de476;p=apps%2Fweb%2Fsample%2FCallLog.git diff --git a/project/js/app.config.js b/project/js/app.config.js index 4a9ccb4..03eb992 100644 --- a/project/js/app.config.js +++ b/project/js/app.config.js @@ -1,49 +1,30 @@ -/* -* Copyright 2013 Samsung Electronics Co., Ltd -* -* Licensed under the Flora License, Version 1.1 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://floralicense.org/license/ -* -* 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. -*/ - /*global tizen*/ /** -* @class Config -*/ + * @class Config + */ function Config() { - 'use strict'; + 'use strict'; } (function () { // strict mode wrapper - 'use strict'; - - Config.prototype = { - - properties: { - 'templateDir': 'templates', - 'templateExtension': '.tpl' - }, - - /** - * Returns config value - */ - get: function (value, defaultValue) { - - if (this.properties.hasOwnProperty(value)) { - return this.properties[value]; - } - return defaultValue; - } - - }; - + 'use strict'; + Config.prototype = { + + properties: { + 'templateDir': 'templates', + 'templateExtension': '.tpl' + }, + + /** + * Returns config value + */ + get: function (value, defaultValue) { + + if (this.properties.hasOwnProperty(value)) { + return this.properties[value]; + } + return defaultValue; + } + }; }());