Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ public/
.kateproject
.kateproject.d
*.kate-swp

dist

demo/*
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"latedef": false,
"newcap": false,
"noarg": true,
"quotmark": "single",
Expand Down
241 changes: 0 additions & 241 deletions Gruntfile.js

This file was deleted.

8 changes: 4 additions & 4 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet" type="text/css">

<!-- build:css({.tmp,app}) styles/demo.css -->
<link rel="stylesheet" href="styles/demo.css">
<link rel="stylesheet" href="demo.css">
<!-- endbuild -->

<!-- build:css({.tmp,app}) styles/meditor.css -->
<link rel="stylesheet" href="styles/meditor.css">
<link rel="stylesheet" href="dist/css/meditor.css">
<!-- endbuild -->
</head>
<body ng-app="meditorDemo" ng-controller="MainCtrl">
Expand Down Expand Up @@ -87,11 +87,11 @@ <h2>
<!-- endbuild -->

<!-- build:js({.tmp,app}) scripts/demo.js -->
<script src="scripts/demo.js"></script>
<script src="demo.js"></script>
<!-- endbuild -->

<!-- build:js({.tmp,app}) scripts/meditor.js -->
<script src="scripts/directives/editor.js"></script>
<script src="dist/js/meditor.js"></script>
<!-- endbuild -->

<script>
Expand Down
Loading