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
Andrew D'Abbraccio
PLUC Inventory - Senior Design
Commits
d0c4657d
Commit
d0c4657d
authored
Mar 04, 2015
by
Drewdabb
Browse files
Post-M8-LibraryTest
parent
7f8a5d87
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
headlessbrower_test1/headlessbrower_test1/AddCollection.js
View file @
d0c4657d
...
...
@@ -4,6 +4,6 @@
el
.
selctedIndex
=
selectedAdd
;
// Selected add is the index of selected collection
el
.
value
=
el
.
options
[
selectedAdd
];
el
.
value
=
el
.
options
[
selectedAdd
]
.
value
;
doTransfer1
();
})();
\ No newline at end of file
headlessbrower_test1/headlessbrower_test1/Login.js
View file @
d0c4657d
(
function
()
{
var
user
=
document
.
getElementById
(
"
UserID
"
);
// User ID input
var
pword
=
document
.
getElementById
(
"
Password
"
);
// Password input
var
loc
=
document
.
getElementById
(
"
LocationSelCtl
"
);
// Location select
var
type
=
document
.
getElementsByName
(
"
ScanType
"
);
// Scan or Identify missing Radiobuttons
var
inventory
=
document
.
getElementById
(
"
InventoryRadioBtn
"
);
var
missing
=
document
.
getElementById
(
"
IDMissingRadioBtn
"
);
var
btn
=
document
.
getElementById
();
// Login button
user
.
value
=
"
circ_admin
"
;
pword
.
value
=
"
silver
"
;
getLocation
();
GetLocation
();
var
loc
=
document
.
getElementById
(
"
LocationSelCtl
"
);
// Location select
loc
.
selectedIndex
=
1
;
// Make sure this is the Lewisburg branch
loc
.
selectedIndex
=
2
;
// Make sure this is the Lewisburg branch
loc
.
value
=
loc
.
options
[
2
].
value
;
inventory
.
checked
=
true
;
btn
.
click
();
doLogin
();
})();
\ No newline at end of file
headlessbrower_test1/headlessbrower_test1/RemoveCollection.js
View file @
d0c4657d
(
function
()
{
var
el
=
document
.
getElementById
(
"
CollectionList
1
"
);
var
el
=
document
.
getElementById
(
"
CollectionList
2
"
);
var
btn
=
document
.
getElementById
(
"
singleLeft
"
);
el
.
selctedIndex
=
selectedRemove
;
btn
.
click
();
el
.
value
=
el
.
options
[
selectedRemove
].
value
;
doTransfer2
();
})();
\ No newline at end of file
headlessbrower_test1/headlessbrower_test1/ViewController.m
View file @
d0c4657d
This diff is collapsed.
Click to expand it.
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