Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
getme
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
amal
getme
Commits
18df8c8f
Commit
18df8c8f
authored
Mar 11, 2020
by
Adarsh K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changes
parent
6afa4f28
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
6 deletions
+14
-6
changeaddress.page.ts
src/app/changeaddress/changeaddress.page.ts
+2
-1
searchmodal.page.html
src/app/searchmodal/searchmodal.page.html
+3
-1
searchmodal.page.ts
src/app/searchmodal/searchmodal.page.ts
+4
-2
global.scss
src/global.scss
+1
-0
index.html
src/index.html
+4
-2
No files found.
src/app/changeaddress/changeaddress.page.ts
View file @
18df8c8f
...
...
@@ -14,6 +14,7 @@ import { ServiceService } from './../../config/service.service';
import
{
MyordersService
}
from
'./../../config/myorder.service'
;
import
{
NgForm
}
from
'@angular/forms'
;
import
*
as
firebase
from
'firebase'
;
declare
var
google
:
any
;
@
Component
({
selector
:
'app-changeaddress'
,
...
...
@@ -93,7 +94,7 @@ export class ChangeaddressPage implements OnInit {
mapReady
(
map
)
{
map
.
addListener
(
'dragend'
,
()
=>
{
console
.
log
(
this
.
newCenterLat
,
this
.
newCenterLng
);
this
.
getAddress
(
this
.
latitude
,
this
.
longitude
);
this
.
getAddress
(
this
.
newCenterLat
,
this
.
newCenterLng
);
});
}
centerChange
(
e
)
{
...
...
src/app/searchmodal/searchmodal.page.html
View file @
18df8c8f
...
...
@@ -6,7 +6,9 @@
</ion-col>
<ion-col
class=
"no-gutter"
size=
"8"
>
<div
class=
"nav_title floatLeft relative"
>
<input
class=
"search_bar"
placeholder=
"Search here.. eg:shirts, retailers etc..."
(
click
)="
clickSearch
()"
(
input
)="
searchFun
($
event
.
target
.
value
)"
#
searchText
/>
<input
class=
"search_bar"
placeholder=
"Search here.. eg:shirts, retailers etc..."
(
click
)="
clickSearch
($
event
.
target
.
value
)"
(
input
)="
searchFun
($
event
.
target
.
value
)"
#
searchText
/>
</div>
</ion-col>
<ion-col
class=
"no-gutter"
size=
"2"
>
...
...
src/app/searchmodal/searchmodal.page.ts
View file @
18df8c8f
...
...
@@ -43,9 +43,11 @@ export class SearchmodalPage implements OnInit {
this
.
searchService
.
search
(
data
);
}
clickSearch
()
{
clickSearch
(
text
:
string
)
{
this
.
searchShow
=
true
;
this
.
searchService
.
searchList
=
[];
if
(
text
===
''
)
{
this
.
searchService
.
searchList
=
[];
}
}
viewPage
(
datas
:
any
)
{
...
...
src/global.scss
View file @
18df8c8f
...
...
@@ -625,6 +625,7 @@ ion-header {
top
:
50px
;
bottom
:
0px
;
z-index
:
99
;
overflow
:
scroll
;
ul
{
margin
:
0px
;
padding
:
0px
;
...
...
src/index.html
View file @
18df8c8f
...
...
@@ -4,9 +4,9 @@
<head>
<meta
charset=
"utf-8"
/>
<title>
Ionic App
</title>
<base
href=
"/"
/>
<meta
name=
"viewport"
content=
"viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta
name=
"viewport"
content=
"viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta
name=
"format-detection"
content=
"telephone=no"
/>
<meta
name=
"msapplication-tap-highlight"
content=
"no"
/>
...
...
@@ -18,6 +18,8 @@
</head>
<body>
<script
src=
"https://maps.googleapis.com/maps/api/js?key=AIzaSyBn6hOlr6YHcZAmbptlsmbhvH5iQllWflE&libraries=geometry"
></script>
<app-root></app-root>
</body>
...
...
Write
Preview
Markdown
is supported
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