Skip to content

Commit b8027c4

Browse files
committed
device fingerprint menu (v2.3)
1 parent cc726f7 commit b8027c4

File tree

5 files changed

+41
-35
lines changed

5 files changed

+41
-35
lines changed
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<div class="container-fluid">
22
<legend>
33
Change the current device Fingerprint
4-
<form>
5-
<div class="form-group">
6-
<button type="button" onclick="resetFingerprint();" class="btn btn-default pull-right">Reset</button>
7-
</div>
8-
</form>
94
</legend>
10-
11-
<table id="tableBuild"></table>
5+
<div id="toolbar" class="btn-group">
6+
<button type="button" onclick="resetFingerprint();" class="btn btn-default">
7+
<i class="glyphicon glyphicon-refresh"></i>
8+
</button>
9+
</div>
10+
<table id="tableBuild" data-show-toggle="true" data-toolbar="#toolbar"></table>
1211
</div>
1312

1413
<script src="js/fingerprint.js"></script>

app/src/main/assets/HTMLFiles/css/style.css

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -195,22 +195,19 @@ html {
195195
.sidebar-nav li:nth-child(5):before {
196196
background-color: #583e7e;
197197
}
198-
.sidebar-nav li:nth-child(6){
199-
padding-top: 20px;
200-
background-color: #375a7f;
198+
.sidebar-nav li:nth-child(6):before {/*------------TIPS-------------------*/
199+
background-color: #583e7e;
201200
}
202-
.sidebar-nav li:nth-child(7){
203-
padding-top: 100px;
201+
.sidebar-nav li:nth-child(7){/*------------SHARE-------------------*/
204202
background-color: #375a7f;
205203
}
206-
207204
.sidebar-nav li:hover:before {
208205
-webkit-transition: width 0.2s ease-in;
209206
transition: width 0.2s ease-in;
210207
width: 100%;
211208
}
212209
.sidebar-nav li a {
213-
color: #dddddd;
210+
color: #ffffff;
214211
display: block;
215212
padding: 10px 15px 10px 30px;
216213
text-decoration: none;

app/src/main/assets/HTMLFiles/index.html

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,8 @@
100100
<li><a class="twitter customer share" href="http://twitter.com/share?url=http://ac-pm.github.io/Inspeckage/&amp;text=Android Package Inspector &amp;hashtags=inspeckage" title="Twitter share" target="_blank">Twitter</a></li>
101101
<li><a class="google_plus customer share" href="https://plus.google.com/share?url=http://ac-pm.github.io/Inspeckage/" title="Google Plus Share" target="_blank">Google +</a></li>
102102
</ul>
103-
</li>
104-
105-
<li>
106-
<center><input type="text" id="clipboard" placeholder="clipboard" onkeyup="clipboard(this.value)"></center>
107-
</li>
108-
<li>
109-
<center><img src="img/sponsored.svg" width="200"></center>
103+
<br><br>
104+
<center><img src="img/azul.png" width="200"></center>
110105
</li>
111106
</ul>
112107
</nav>
@@ -147,9 +142,15 @@
147142
<li class="dropdown">
148143
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><i class="fa fa-download" aria-hidden="true"></i> Download <span class="caret"></span></a>
149144
<ul class="dropdown-menu">
150-
<li><a href="#" onclick="download_apk();"> APK</a>
145+
<li>
146+
<a href="#" onclick="download_apk();">
147+
<i class="fa fa-android" aria-hidden="true"></i> APK
148+
</a>
151149
</li>
152-
<li><a href="#" onclick="download_all();"> All Files</a>
150+
<li>
151+
<a href="#" onclick="download_all();">
152+
<i class="fa fa-file-archive-o" aria-hidden="true"></i> All Files
153+
</a>
153154
</li>
154155
</ul>
155156
</li>
@@ -175,10 +176,22 @@
175176

176177

177178
<ul class="nav navbar-nav">
178-
<li class="active"><a href="/logcat.html" onclick="logcat();" >LogCat</a>
179+
180+
<li class="active"><a href="#" onclick="logcat();" >
181+
<i class="fa fa-external-link" aria-hidden="true"></i>
182+
LogCat
183+
</a>
179184
</li>
180185
</ul>
181186

187+
<form class="navbar-form navbar-left">
188+
<div class="form-group">
189+
<input type="text" id="clipboard" class="form-control" placeholder="clipboard">
190+
</div>
191+
</form>
192+
193+
</ul>
194+
182195
<ul class="nav navbar-nav navbar-right">
183196

184197
<li> <a href="https://github.com/ac-pm/"> Module enable: #moduleEnable# </a>

app/src/main/assets/HTMLFiles/js/base.js

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,15 @@ $(document).ready(function() {
4747

4848
CollapsibleLists.apply();
4949

50-
5150
});
5251

53-
54-
55-
56-
52+
$(document.body).on('keyup', '#clipboard', function(){
53+
var chararcters = $("#clipboard").val();
54+
$.get("/", {
55+
type: "clipboard",
56+
value: chararcters
57+
});
58+
});
5759

5860
function fileTree() {
5961
$('#fileTree1').load('?type=filetree');
@@ -97,13 +99,7 @@ function setARP() {
9799
}
98100
}
99101

100-
function clipboard(value) {
101102

102-
$.get("/", {
103-
type: "clipboard",
104-
value: value
105-
});
106-
}
107103

108104
function proxyTest() {
109105
$('#proxyTest').load('?type=proxytest');

app/src/main/assets/HTMLFiles/js/fingerprint.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ $(function() {
44

55
$tableBuild.bootstrapTable({
66
idField: 'name',
7+
search: true,
78
url: '/?type=getbuild',
89
columns: [{
910
field: 'enable',

0 commit comments

Comments
 (0)