Skip to content

Commit d7eed30

Browse files
committed
fixed
2 parents 8b20e0c + c018de4 commit d7eed30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
display : inline-block;
4141
font-size : 12px;
4242
}
43-
4443
small {
4544

4645
margin : 0 10px;
@@ -65,6 +64,7 @@ <h1>Parse CSS and Convert to PHP Array</h1>
6564
<small><a target="_blank" href="http://www.flaticon.com/">FlatIcon</a></small>
6665

6766
<small><a target="_blank" href="https://raw.githubusercontent.com/WordPress/dashicons/master/css/dashicons.css">DashIcons</a></small>
67+
6868
</p>
6969

7070
<label>
@@ -82,7 +82,6 @@ <h1>Parse CSS and Convert to PHP Array</h1>
8282
<textarea v-model="css" cols="30" placeholder="Paste CSS Contents" rows="10"></textarea>
8383
<textarea v-show="php" readonly v-model="php" cols="30" rows="10"></textarea>
8484

85-
8685
</div>
8786

8887

script.js

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ new Vue({
2323
generatePHP : function (prefix, css, before) {
2424

2525
var match,
26+
2627
phpcode = [],
2728
$comments = /\/\*(?:(?!\*\/)[\s\S])*\*\//g,
2829
$pattern = `.(${prefix}([^:|^"]+)):before`,

0 commit comments

Comments
 (0)