Suppression upload.js
This commit is contained in:
parent
b557b7e757
commit
37fe20d668
@ -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');
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
Class IndexController extends Zend_Controller_Action
|
||||
class IndexController extends Zend_Controller_Action
|
||||
{
|
||||
|
||||
public function init()
|
||||
|
@ -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()
|
||||
}
|
||||
);
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user