Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Dirk Rockendorf
metager-app
Commits
957a38a5
Commit
957a38a5
authored
Nov 29, 2017
by
Phil Höfer
Browse files
Set required APILevel to 19
parent
14ff649f
Changes
2
Hide whitespace changes
Inline
Side-by-side
config.xml
View file @
957a38a5
...
...
@@ -21,7 +21,7 @@
<icon
density=
"mdpi"
src=
"res/icon/android/mdpi.png"
/>
<icon
density=
"hdpi"
src=
"res/icon/android/hdpi.png"
/>
<icon
density=
"xhdpi"
src=
"res/icon/android/xhdpi.png"
/>
<preference
name=
"android-minSdkVersion"
value=
"
2
1"
/>
<preference
name=
"android-minSdkVersion"
value=
"1
9
"
/>
<allow-intent
href=
"market:*"
/>
</platform>
<platform
name=
"ios"
>
...
...
www/app/results.js
View file @
957a38a5
...
...
@@ -61,7 +61,7 @@ function filterFunc(p,i,a)
function
getParameter
(
parameterName
)
{
var
parameterStrings
=
location
.
search
.
substr
(
1
).
split
(
"
&
"
);
var
results
=
parameterStrings
.
filter
(
function
(
p
,
i
,
a
)
{
return
p
.
startsWith
(
parameterName
+
"
=
"
)
;
return
p
.
lastIndexOf
(
parameterName
+
"
=
"
,
0
)
===
0
;
});
return
results
.
join
(
"
&
"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment