Skip to content

Commit

Permalink
Merge pull request #5 from Kondeo/browserPlatform
Browse files Browse the repository at this point in the history
Added missing browser hook
  • Loading branch information
torch2424 committed Nov 19, 2015
2 parents 6c289fd + ab6f3de commit aedf18b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion templates/hooks/after_prepare/icons_and_splashscreens.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ var Orchestrator = require('orchestrator');

var BASES = {
android: 'res',
ios: '<%= appName %>/Resources'
ios: '<%= appName %>/Resources',
browser: 'www/images'
};
var RESOURCE_DIR = 'resources';

Expand Down
3 changes: 2 additions & 1 deletion templates/hooks/after_prepare/update_platform_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ var platformConfig = (function(){
'android-theme': {target: 'AndroidManifest.xml', parent: 'application/activity[@android:name=\'CordovaApp\']', destination: 'android:theme'},
'android-windowSoftInputMode': {target: 'AndroidManifest.xml', parent: 'application/activity[@android:name=\'CordovaApp\']', destination: 'android:windowSoftInputMode'}
},
'ios': {}
'ios': {},
'browser': {}
};
var configXmlData, preferencesData;

Expand Down

0 comments on commit aedf18b

Please sign in to comment.