Main theme for SuiteDesk
This commit is contained in:
parent
8cf3c56044
commit
42540d1310
185 changed files with 17597 additions and 0 deletions
14
themes/zuitedesk/js/bootstrap.min.sh
Normal file
14
themes/zuitedesk/js/bootstrap.min.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
jscript="bootstrap.min.js"
|
||||
original="$jscript.original"
|
||||
|
||||
if [ -f "$jscript" ]
|
||||
then
|
||||
[ ! -f "$original" ] && cp "$jscript" "$original" && echo "Keeping original file in $original"
|
||||
sed -i ".bak" 's/\(jQuery\)/\$jq/g' "$jscript"
|
||||
echo "Replacing $jscript"
|
||||
else
|
||||
echo "File $jscript not found"
|
||||
fi
|
||||
|
Reference in a new issue