-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
291 additions
and
531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Fluid - Gridmanager Development</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<!-- Grid Manager CSS --> | ||
<link href="../dist/css/jquery.gridmanager.css" rel="stylesheet"> | ||
|
||
|
||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
<!-- jQuery --> | ||
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script> | ||
<!-- jQuery UI --> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script> | ||
<!-- Bootstrap JS --> | ||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> | ||
|
||
<!-- Grid Manager JS --> | ||
<script src="../dist/js/jquery.gridmanager.js"></script> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
|
||
<div class="container-fluid"> | ||
<div id="mycanvas"> | ||
|
||
</div> | ||
</div> | ||
|
||
<!--================== JS ================--> | ||
<script> | ||
$(document).ready(function(){ | ||
|
||
$("#mycanvas").gridmanager({ | ||
controlPrepend: "<div class='row-fluid'><div class='col-md-12'><div id='gm-addnew' class='btn-group '>", | ||
// Row Specific | ||
rowSelector: "div.row-fluid", | ||
rowPrepend: "<div class='row-fluid gm-editing'>" | ||
} ); | ||
|
||
|
||
}); | ||
</script> | ||
</body> | ||
</html> | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.