moved wrapper functions for javascript and stylesheet actions from hopobject/actions.js to site/actions.js

This commit is contained in:
Tobi Schäfer 2002-08-08 12:10:19 +00:00
parent 6bb094a240
commit 0a6795757e
2 changed files with 47 additions and 20 deletions

View file

@ -5,23 +5,3 @@
function colorpicker_action() {
this.renderSkin("colorpicker");
}
/**
* wrapper to make style.skin public
*/
function stylesheet_action() {
res.contentType = "text/css";
this.renderSkin("style");
}
/**
* wrapper to make javascript.skin public
*/
function javascript_action() {
res.contentType = "text/javascript";
this.renderSkin("javascript");
}