Merge branch 'master' of https://github.com/bryant1410/cordova-windows
diff --git a/.travis.yml b/.travis.yml
index dcbeeda..d0be3b6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,8 +3,6 @@
 git:
   depth: 10
 node_js:
-  - "0.10"
-  - "0.12"
   - "4"
   - "6"
 install:
diff --git a/appveyor.yml b/appveyor.yml
index b8d1fea..f32bed8 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -21,8 +21,6 @@
 
 environment:
   matrix:
-  - nodejs_version: "0.10"
-  - nodejs_version: "0.12"
   - nodejs_version: "4"
   - nodejs_version: "6"
 
diff --git a/cordova-js-src/splashscreen.js b/cordova-js-src/splashscreen.js
index 6fe918b..99b60d9 100644
--- a/cordova-js-src/splashscreen.js
+++ b/cordova-js-src/splashscreen.js
@@ -212,7 +212,7 @@
 // Make title bg color match splashscreen bg color
 function colorizeTitleBar() {
     var appView = Windows.UI.ViewManagement.ApplicationView.getForCurrentView();
-    if (appView.titleBar) {
+    if (isWin10UWP) {
         titleInitialBgColor = appView.titleBar.backgroundColor;
 
         appView.titleBar.backgroundColor = titleBgColor;
@@ -223,7 +223,7 @@
 // Revert title bg color
 function revertTitleBarColor() {
     var appView = Windows.UI.ViewManagement.ApplicationView.getForCurrentView();
-    if (appView.titleBar) {
+    if (isWin10UWP) {
         appView.titleBar.backgroundColor = titleInitialBgColor;
         appView.titleBar.buttonBackgroundColor = titleInitialBgColor;
     }
diff --git a/package.json b/package.json
index e73937c..d3ef3da 100644
--- a/package.json
+++ b/package.json
@@ -8,6 +8,9 @@
     "type": "git",
     "url": "https://github.com/apache/cordova-windows"
   },
+  "bugs": {
+    "url": "https://issues.apache.org/jira/browse/CB"
+  },
   "keywords": [
     "windows",
     "cordova",