Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Зуев Егор
/
wiki.dev
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Authored by
Dan Brown
2015-09-03 19:52:11 +0100
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Commit
48814b898463b9c950e1ac79b7fdedada54a2adf
48814b89
1 parent
6ded178d
Fixed empty app name and missing bower dependancy
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
bower.json
resources/views/settings/index.blade.php
bower.json
View file @
48814b8
...
...
@@ -19,6 +19,7 @@
"bootstrap"
:
"~3.3.5"
,
"jquery-sortable"
:
"~0.9.13"
,
"material-design-iconic-font"
:
"~2.1.1"
,
"vue"
:
"~0.12.10"
"vue"
:
"~0.12.10"
,
"vue-resource"
:
"~0.1.15"
}
}
...
...
resources/views/settings/index.blade.php
View file @
48814b8
...
...
@@ -12,7 +12,7 @@
{!! csrf_field() !!}
<div
class=
"form-group"
>
<label
for=
"setting-app-name"
>
Application Name
</label>
<input
type=
"text"
value=
"{{ Setting::get('app-name') }}"
name=
"setting-app-name"
id=
"setting-app-name"
>
<input
type=
"text"
value=
"{{ Setting::get('app-name'
, 'BookStack'
) }}"
name=
"setting-app-name"
id=
"setting-app-name"
>
</div>
<div
class=
"form-group"
>
<label
for=
"setting-app-public"
>
Allow public viewing?
</label>
...
...
Please
register
or
sign in
to post a comment