Skip to content

Commit

Permalink
Just another first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Maluen committed May 13, 2013
0 parents commit 99007ba
Show file tree
Hide file tree
Showing 74 changed files with 18,722 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Temp files
*~
.directory
.DS_Store

# Others
10 changes: 10 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Copyright (C) 2013 project founder and contributors.

Founder and main contributor:
Manuel Dell'Elce, email: mh025r0x@gmail.com

Other main contributors:
-

Minor contributors:
-
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Backbone-Debugger
=================

Debugger for JavaScript Applications made with the Backbone framework.
873 changes: 873 additions & 0 deletions src/css/bootstrap.min.css

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions src/css/elementsSidebar.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
body {
font-size: 13px;
}

.title {
color: #c80101;
}

#backboneViewContainer {
display: none;
}
89 changes: 89 additions & 0 deletions src/css/panel.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
html, body {
height: 100%;
}

.fill {
height: 100%;
overflow: hidden;
}

body {
background-color: #F5F5F5;
padding: 0;
}

.btn-link {
padding: 0;
}

.container-fluid {
padding: 0;
}

#debugDisabled {
padding: 15px;
}

#waiting {
padding: 15px;
}

.nav-tabs {
height: 100%;
margin-right: 0 !important;
}

/* Turns dropdown into dropright for left-aligned nav-tabs */
.tabs-left .nav-tabs .dropdown-menu {
position: absolute;
left: 99px;
top: -2px;
}
.caret-right {
-webkit-transform: rotate(270deg);
}

.tab-pane {
height: 100%;
overflow-y: auto;
padding: 0 15px;
}

.appComponentList>li {
background-color: #EBEBEB;
}

.appComponentToggle {
text-align: left;
}

@-webkit-keyframes highlight {
0% { background-color: #57A0FF;
color: black; }
}
.highlight {
-webkit-animation: highlight 2s;
}

.appComponent {
background-color: white;
border-style: solid;
border-color: rgb(221, 221, 221);
border-width: 1px;
border-collapse: collapse;
}

.appComponent ul {
padding-top: 5px;
}

.appComponentActions {
max-height: 185px !important;
overflow-x: hidden;
overflow-y: auto;
margin-bottom: 20px;
}

.appComponentActions table {
margin-bottom: 0;
}
12 changes: 12 additions & 0 deletions src/devtools.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!-- Non inserire script inline in questo file in quanto non vengono eseguiti da chrome -->

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Devtools Page</title>
<script src="js/devtools.js"></script>
</head>
<body>
</body>
</html>
20 changes: 20 additions & 0 deletions src/elementsSidebar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- Non inserire script inline in questo file in quanto non verranno eseguiti da Chrome -->

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Backbone Debugger</title>

<link rel="stylesheet" type="text/css" href="css/elementsSidebar.css" />

<script src="js/elementsSidebar.js"></script>
</head>
<body>
<div id="backboneViewContainer">
<span class="title">Backbone View</span>:
<span id="backboneView"></span>
</div>
</body>
</html>
Binary file added src/img/glyphicons-halflings-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/glyphicons-halflings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/panel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 99007ba

Please sign in to comment.