From: Determe, Sebastien (sd378r) Date: Wed, 4 Jul 2018 09:36:45 +0000 (+0200) Subject: Remove useless file X-Git-Tag: 3.0.0~52 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ea5b0b5b35ddee80a07bef4af391387ed348658b;p=clamp.git Remove useless file Remove index.js that was in the lib folder Issue-ID: CLAMP-191 Change-Id: I2e14efd9756a6089397fd0afdebc0185c8256a5c Signed-off-by: Determe, Sebastien (sd378r) --- diff --git a/src/main/resources/META-INF/resources/designer/lib/index.js b/src/main/resources/META-INF/resources/designer/lib/index.js deleted file mode 100644 index 0a66133f..00000000 --- a/src/main/resources/META-INF/resources/designer/lib/index.js +++ /dev/null @@ -1,52 +0,0 @@ -$(function() { - var $wrapper = $('#wrapper'); - - // theme switcher - var theme_match = String(window.location).match(/[?&]theme=([a-z0-9]+)/); - var theme = (theme_match && theme_match[1]) || 'default'; - var themes = ['default','legacy','bootstrap2','bootstrap3']; - $('head').append(''); - - var $themes = $('
').addClass('theme-selector').insertAfter('h1'); - for (var i = 0; i < themes.length; i++) { - $themes.append('' + themes[i] + ''); - } - - // display scripts on the page - $('script', $wrapper).each(function() - { - var code = this.text; - if (code && code.length) { - var lines = code.split('\n'); - var indent = null; - - for (var i = 0; i < lines.length; i++) { - if (/^[ ]*$/.test(lines[i])) continue; - if (!indent) { - var lineindent = lines[i].match(/^([ ]+)/); - if (!lineindent) break; - indent = lineindent[1]; - } - lines[i] = lines[i].replace(new RegExp('^' + indent), ''); - } - - var code = $.trim(lines.join('\n')).replace(/ /g, ' '); - var $pre = $('
').addClass('js').text(code);
-			$pre.insertAfter(this);
-		}
-	});
-
-	// show current input values
-	$('select.selectized,input.selectized', $wrapper).each(function() 
-    {
-		var $container = $('
').addClass('value').html('Current Value: '); - var $value = $('').appendTo($container); - var $input = $(this); - var update = function(e) { $value.text(JSON.stringify($input.val())); } - - $(this).on('change', update); - update(); - - $container.insertAfter($input); - }); -}); \ No newline at end of file