aboutsummaryrefslogtreecommitdiff
path: root/js/document/helpers/url-parser.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-03 15:57:43 -0700
committerValerio Virgillito2012-05-03 15:57:43 -0700
commit8dcbac5d4c30e9dfbc543a5f997939111e9c9f89 (patch)
treeb053a48b8c835ae9087a97bfdf02746e7b4c3833 /js/document/helpers/url-parser.js
parent602240c38e0f2c3937d3c7246247e0b59bccab2b (diff)
parentf3479e478f3cec1cb00508bedbce8dc5a210931a (diff)
downloadninja-8dcbac5d4c30e9dfbc543a5f997939111e9c9f89.tar.gz
Merge pull request #193 from joseeight/Document
New Document View
Diffstat (limited to 'js/document/helpers/url-parser.js')
-rwxr-xr-xjs/document/helpers/url-parser.js45
1 files changed, 45 insertions, 0 deletions
diff --git a/js/document/helpers/url-parser.js b/js/document/helpers/url-parser.js
new file mode 100755
index 00000000..a1a7406a
--- /dev/null
+++ b/js/document/helpers/url-parser.js
@@ -0,0 +1,45 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7////////////////////////////////////////////////////////////////////////
8//
9var Montage = require("montage/core/core").Montage,
10 Component = require("montage/ui/component").Component;
11////////////////////////////////////////////////////////////////////////
12//
13exports.UrlParser = Montage.create(Component, {
14 ////////////////////////////////////////////////////////////////////
15 //
16 hasTemplate: {
17 value: false
18 },
19 ////////////////////////////////////////////////////////////////////
20 //
21 parseStyles: {
22 value: function (styles) {
23 //
24 }
25 },
26 ////////////////////////////////////////////////////////////////////
27 //
28 loadLocalStyleSheet: {
29 value: function (path) {
30 //
31 }
32 }
33 ,
34 ////////////////////////////////////////////////////////////////////
35 //
36 loadExternalStyleSheet: {
37 value: function (path) {
38 //
39 }
40 }
41 ////////////////////////////////////////////////////////////////////
42 ////////////////////////////////////////////////////////////////////
43});
44////////////////////////////////////////////////////////////////////////
45//////////////////////////////////////////////////////////////////////// \ No newline at end of file