Skip to content

Commit

Permalink
added new script template and removed unnecessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
giastfader committed Oct 29, 2014
1 parent 0728eaf commit 6b23f18
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 358 deletions.
48 changes: 0 additions & 48 deletions app/views/admin/main_/content_/_scripts.scala.html

This file was deleted.

33 changes: 33 additions & 0 deletions app/views/admin/main_/content_/scripts.scala.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
<div id="scripts" ng-controller="ScriptsController" ng-init="">
<script type="bogus" id="script-template">
/* script: _SCRIPT_NAME_ */
/* This script endpoint: /plugin/_SCRIPT_NAME_
/* uncomment this snippet to write a script that replies on GET method */
/*
http().get(function(req){
return {status: 200};
});
*/

/* uncomment this snippet to write a script that replies on POST method */
/*
http().post(function(req){
return {status: 200};
});
*/

/* uncomment this snippet to write a script that replies on PUT method */
/*
http().put(function(req){
return {status: 200};
});
*/

/* uncomment this snippet to write a script that replies on DELETE method */
/*
http().delete(function(req){
return {status: 200};
});
*/
</script>

<p class="hint">These are your installed Plugins.</p>

<div class="span11">
Expand Down
309 changes: 0 additions & 309 deletions public/console/bbjs/_scripts.js

This file was deleted.

Loading

0 comments on commit 6b23f18

Please sign in to comment.