Skip to content
This repository was archived by the owner on Dec 16, 2019. It is now read-only.

Commit db8f426

Browse files
committed
Merge branch 'gh-pages'
2 parents 131a7a6 + 73809ef commit db8f426

File tree

2 files changed

+82
-5
lines changed

2 files changed

+82
-5
lines changed

development_index.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!DOCTYPE html>
2+
<html ng-app="exampleApp">
3+
4+
<head>
5+
<meta charset='utf-8'>
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
8+
<link rel="stylesheet" type="text/css" href="./pages/stylesheets/stylesheet.css" media="screen" />
9+
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
10+
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
11+
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/github.min.css">
12+
<script>
13+
var staticPath = '/pages/';
14+
</script>
15+
<style>
16+
.nav,
17+
.pagination,
18+
.carousel,
19+
.panel-title a {
20+
cursor: pointer;
21+
}
22+
</style>
23+
24+
<!--[if lt IE 9]>
25+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
26+
<![endif]-->
27+
28+
<title>AngularJS Dropdown Multiselect by dotansimha</title>
29+
</head>
30+
31+
<body>
32+
<header>
33+
<div class="inner">
34+
<a href="https://github.com/myforce/angularjs-dropdown-multiselect" class="btn btn-info pull-right gh-button-link">
35+
<strong>
36+
View project on
37+
<br />GitHub
38+
</strong>
39+
</a>
40+
<h1>AngularJS Dropdown Multiselect</h1>
41+
<h2>based on Bootstrap's dropdown</h2>
42+
</div>
43+
</header>
44+
<div class="container">
45+
<div class="row">
46+
<div class="col-md-12">
47+
<div ng-view></div>
48+
</div>
49+
</div>
50+
</div>
51+
<footer>
52+
<div class="inner">
53+
<a href="http://www.myforce.be/" class="pull-right">
54+
<img src="./pages/images/myforcelogokleur.png" />
55+
</a>
56+
<p>Contributed by MyForce NV</p>
57+
<p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the Architect theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
58+
</div>
59+
</footer>
60+
61+
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.16/angular.js"></script>
62+
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.16/angular-route.js"></script>
63+
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.16/angular-sanitize.js"></script>
64+
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.16/angular-touch.min.js"></script>
65+
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.16/angular-animate.js"></script>
66+
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.0/highlight.min.js"></script>
67+
<script type="text/javascript" src="https://rawgit.com/pc035860/angular-highlightjs/master/angular-highlightjs.js"></script>
68+
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.10.0/ui-bootstrap-tpls.js"></script>
69+
70+
<script type="text/javascript" src="src/angularjs-dropdown-multiselect.js"></script>
71+
72+
<script type="text/javascript" src="./pages/javascripts/app.js"></script>
73+
<script type="text/javascript" src="./pages/javascripts/pages/home/ExampleCtrl.js"></script>
74+
75+
</body>
76+
77+
</html>

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<meta charset='utf-8'>
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
77
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
8-
<link rel="stylesheet" type="text/css" href="pages/stylesheets/stylesheet.css" media="screen" />
8+
<link rel="stylesheet" type="text/css" href="./pages/stylesheets/stylesheet.css" media="screen" />
99
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
1010
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
1111
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/github.min.css">
1212
<script>
13-
var staticPath = '/pages/';
13+
var staticPath = '/angularjs-dropdown-multiselect/pages/';
1414
</script>
1515
<style>
1616
.nav,
@@ -51,7 +51,7 @@ <h2>based on Bootstrap's dropdown</h2>
5151
<footer>
5252
<div class="inner">
5353
<a href="http://www.myforce.be/" class="pull-right">
54-
<img src="../pages/images/myforcelogokleur.png" />
54+
<img src="./pages/images/myforcelogokleur.png" />
5555
</a>
5656
<p>Contributed by MyForce NV</p>
5757
<p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the Architect theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
@@ -69,8 +69,8 @@ <h2>based on Bootstrap's dropdown</h2>
6969

7070
<script type="text/javascript" src="src/angularjs-dropdown-multiselect.js"></script>
7171

72-
<script type="text/javascript" src="pages/javascripts/app.js"></script>
73-
<script type="text/javascript" src="pages/javascripts/pages/home/ExampleCtrl.js"></script>
72+
<script type="text/javascript" src="./pages/javascripts/app.js"></script>
73+
<script type="text/javascript" src="./pages/javascripts/pages/home/ExampleCtrl.js"></script>
7474

7575
</body>
7676

0 commit comments

Comments
 (0)