some whitespace fixes
This commit is contained in:
parent
ab164cfde5
commit
1e03e60c15
@ -203,7 +203,7 @@ window.androidCopy = function(text) {
|
|||||||
window.androidPermalink = function() {
|
window.androidPermalink = function() {
|
||||||
if(typeof android === 'undefined' || !android || !android.copy)
|
if(typeof android === 'undefined' || !android || !android.copy)
|
||||||
return true; // i.e. execute other actions
|
return true; // i.e. execute other actions
|
||||||
|
|
||||||
var center = map.getCenter();
|
var center = map.getCenter();
|
||||||
android.intentPosLink(center.lat, center.lng, map.getZoom(), "Intel Map", false);
|
android.intentPosLink(center.lat, center.lng, map.getZoom(), "Intel Map", false);
|
||||||
return false;
|
return false;
|
||||||
|
@ -66,7 +66,6 @@
|
|||||||
|
|
||||||
<data android:scheme="geo"/>
|
<data android:scheme="geo"/>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
|
|
||||||
<!-- Points to searchable meta data. -->
|
<!-- Points to searchable meta data. -->
|
||||||
<meta-data android:name="android.app.searchable"
|
<meta-data android:name="android.app.searchable"
|
||||||
|
@ -20,9 +20,9 @@ public class SendToClipboard extends Activity {
|
|||||||
|
|
||||||
ClipData clip = ClipData.newPlainText("Copied Text ", text);
|
ClipData clip = ClipData.newPlainText("Copied Text ", text);
|
||||||
clipboard.setPrimaryClip(clip);
|
clipboard.setPrimaryClip(clip);
|
||||||
|
|
||||||
Toast.makeText(this, R.string.msg_copied, Toast.LENGTH_SHORT).show();
|
Toast.makeText(this, R.string.msg_copied, Toast.LENGTH_SHORT).show();
|
||||||
|
|
||||||
finish();
|
finish();
|
||||||
setResult(RESULT_OK);
|
setResult(RESULT_OK);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user