Suppression upload.js

This commit is contained in:
Michael RICOIS 2012-05-17 18:12:55 +00:00
parent b557b7e757
commit 37fe20d668
3 changed files with 1 additions and 18 deletions

View File

@ -21,7 +21,6 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
->appendStylesheet('/themes/jstree/default/style.css')
->appendStylesheet('/themes/jqueryui/jquery-ui.css', 'all')
->appendStylesheet($pathStyle.'/main.css', 'all');
//->appendStylesheet('/themes/multiselect/css/ui.multiselect.css', 'all');
$view->headScript()
->appendFile($pathScript.'/jquery.js', 'text/javascript')
@ -29,9 +28,7 @@ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
->appendFile($pathScript.'/jquery.cookie.js', 'text/javascript')
->appendFile($pathScript.'/jquery-ui.js', 'text/javascript')
->appendFile($pathScript.'/jquery.qtip.js', 'text/javascript')
->appendFile($pathScript.'/upload.js', 'text/javascript')
->appendFile($pathScript.'/scripts.js', 'text/javascript');
//->appendFile($pathScript.'/ui.multiselect.js', 'text/javascript');
$view->headTitle()->setSeparator(' - ');
$view->headTitle('Odea');

View File

@ -1,5 +1,5 @@
<?php
Class IndexController extends Zend_Controller_Action
class IndexController extends Zend_Controller_Action
{
public function init()

View File

@ -1,14 +0,0 @@
$(document).ready(function(){
$('.upload').change(function(){
term = $(this).val();
a = term.split('/');
$.ajax(
'/upload/arborescance/'+a,
{
type : "GET",
cache : false,
data : $(this).serializeArray()
}
);
});
});