X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-docgen%2Fsrc%2Fmain%2Fresources%2Fexplorer%2Flib%2Fodl%2Flist_mounts.js;fp=opendaylight%2Fmd-sal%2Fsal-rest-docgen%2Fsrc%2Fmain%2Fresources%2Fexplorer%2Flib%2Fodl%2Flist_mounts.js;h=0000000000000000000000000000000000000000;hp=bfd561a21eb27bd572b7e09069021287b4f500a0;hb=89b8b59cd26fd4810293ff14386eb29a71da9fac;hpb=9ba2b4eca79bcc0e78099b133296801c8d45a6c4 diff --git a/opendaylight/md-sal/sal-rest-docgen/src/main/resources/explorer/lib/odl/list_mounts.js b/opendaylight/md-sal/sal-rest-docgen/src/main/resources/explorer/lib/odl/list_mounts.js deleted file mode 100644 index bfd561a21e..0000000000 --- a/opendaylight/md-sal/sal-rest-docgen/src/main/resources/explorer/lib/odl/list_mounts.js +++ /dev/null @@ -1,22 +0,0 @@ -//constructs a table of mount points via a json response -//Loads the table into the given dom. -var loadMountList = function( dom ) { - dom.empty(); - dom.append( "

Loading. Please wait...

" ); - $.ajax( { - url: "/apidoc/apis/mounts", - datatype: 'jsonp', - success: function( strData ){ - var myData = strData; - var list = $( "
" ); - for( var key in myData ) - { - list.append( "" + - myData[key].instance + ""); - } - dom.empty(); - dom.append( list ); - } - } ); -} \ No newline at end of file