removed unused html file. Removed close button from menu.

This commit is contained in:
Nils Norman Haukås 2016-01-18 18:29:07 +01:00
parent c4558dfac0
commit 53b856c2a3
3 changed files with 0 additions and 76 deletions

View file

@ -10,12 +10,6 @@
<body id="tagit-menu" ng-app="tagit" class="tagit-menu">
<div ng-controller="MenuCtrl">
<br/>
<button ng-click="vm.removeMenu()" class="btn btn-default">
Close menu
</button>
<h2>Tag you're it</h2>
<p>Select a word to tag with a semantic tag.</p>

View file

@ -3,61 +3,10 @@
<head>
<title>This will be an iframe programmatically included into a parent page.</title>
<style type="text/css">
.tagit-body {
width: 70%;
position: absolute;
right: 0;
padding: 10px;
}
.tagit-iframe {
position: fixed;
overflow-y: auto;
width: 30%;
left: 0;
top: 0;
bottom: 0;
padding: 10px;
}
.tagit-iframe,
.tagit-menu {
background-color: #ccc;
height: 100%;
}
.tagit-menu ul {
padding-left: 0px;
margin-top: 10px;
}
.tagit-menu li {
padding: 5px;
}
.tagit-menu li:hover {
background-color: #eee;
cursor: pointer;
}
.tagit-tag {
background-color: #EDDE45;
padding: 3px;
}
</style>
</head>
<body id="tagit-menu" class="tagit-menu">
<div ng-controller="MenuCtrl">
<br/>
<button ng-click="vm.removeMenu()" class="btn btn-default">
Close menu
</button>
<h2>Tag you're it</h2>
<p>Select a word to tag with a semantic tag.</p>

View file

@ -1,19 +0,0 @@
<!-- angular menu example -->
<div id="tagit-menu" class="tagit-menu" ng-controller="MenuCtrl">
<h2>Tag you're it</h2>
<p>Select a word to tag with a semantic tag.</p>
<p>
Currently selected word: <strong>{{vm.selectedWord}}</strong>
</p>
<input type="text" ng-model="wordToFilterBy" class="form-control" placeholder="Filter tags" />
<ul id="senses">
<li ng-click="vm.onSenseSelect(sense)" id="sense.senseid" ng-repeat="sense in vm.senses | filter:wordToFilterBy" class="list-unstyled">
<strong>{{sense.word}}</strong> {{sense.explanation}}
</li>
</ul>
</div>